[Python-checkins] cpython (2.7): Issue #12935: Correct typo in findertools.

ned.deily python-checkins at python.org
Thu Sep 15 23:08:14 CEST 2011


http://hg.python.org/cpython/rev/b5f4c4085ae6
changeset:   72390:b5f4c4085ae6
branch:      2.7
user:        Ned Deily <nad at acm.org>
date:        Thu Sep 15 14:07:31 2011 -0700
summary:
  Issue #12935: Correct typo in findertools.

files:
  Lib/plat-mac/findertools.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/plat-mac/findertools.py b/Lib/plat-mac/findertools.py
--- a/Lib/plat-mac/findertools.py
+++ b/Lib/plat-mac/findertools.py
@@ -128,7 +128,7 @@
 def comment(object, comment=None):
     """comment: get or set the Finder-comment of the item, displayed in the 'Get Info' window."""
     object = Carbon.File.FSRef(object)
-    object_alias = object.FSNewAliasMonimal()
+    object_alias = object.FSNewAliasMinimal()
     if comment is None:
         return _getcomment(object_alias)
     else:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list