summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-09-15 14:07:31 -0700
committerNed Deily <nad@acm.org>2011-09-15 14:07:31 -0700
commit1549bac6bac601502f9a3647a67fe549d3a05a4d (patch)
treeb970282fe15a0c0d1e7f836622079e9e21c56f83
parent7711273ce8a39a5e1d93e95b8a250bcafcba50d3 (diff)
downloadcpython-git-1549bac6bac601502f9a3647a67fe549d3a05a4d.tar.gz
Issue #12935: Correct typo in findertools.
-rw-r--r--Lib/plat-mac/findertools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/plat-mac/findertools.py b/Lib/plat-mac/findertools.py
index 1363562fbf..d0c74a9125 100644
--- a/Lib/plat-mac/findertools.py
+++ b/Lib/plat-mac/findertools.py
@@ -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: