]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Issue #12935: Correct typo in findertools.
authorNed Deily <nad@acm.org>
Thu, 15 Sep 2011 21:07:31 +0000 (14:07 -0700)
committerNed Deily <nad@acm.org>
Thu, 15 Sep 2011 21:07:31 +0000 (14:07 -0700)
Lib/plat-mac/findertools.py

index 1363562fbf57d613b8703defcfa826c641822070..d0c74a912567fc9f52647c0225bf2e5a21341e2c 100644 (file)
@@ -128,7 +128,7 @@ def update(file):
 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: