From 1549bac6bac601502f9a3647a67fe549d3a05a4d Mon Sep 17 00:00:00 2001 From: Ned Deily Date: Thu, 15 Sep 2011 14:07:31 -0700 Subject: Issue #12935: Correct typo in findertools. --- Lib/plat-mac/findertools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: -- cgit v0.12