summaryrefslogtreecommitdiffstats
path: root/Lib/plat-mac
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2011-09-15 21:07:31 (GMT)
committerNed Deily <nad@acm.org>2011-09-15 21:07:31 (GMT)
commit1549bac6bac601502f9a3647a67fe549d3a05a4d (patch)
treeb970282fe15a0c0d1e7f836622079e9e21c56f83 /Lib/plat-mac
parent7711273ce8a39a5e1d93e95b8a250bcafcba50d3 (diff)
downloadcpython-1549bac6bac601502f9a3647a67fe549d3a05a4d.zip
cpython-1549bac6bac601502f9a3647a67fe549d3a05a4d.tar.gz
cpython-1549bac6bac601502f9a3647a67fe549d3a05a4d.tar.bz2
Issue #12935: Correct typo in findertools.
Diffstat (limited to 'Lib/plat-mac')
-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 1363562..d0c74a9 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: