From 4f6af6e4dcd60cf61316355faf3e0f8feb24fc7b Mon Sep 17 00:00:00 2001 From: hsoft Date: Wed, 16 Dec 2009 16:16:22 +0000 Subject: [PATCH] dgpe cocoa: ugh... fixed typo --HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40266 --- pe/py/app_cocoa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pe/py/app_cocoa.py b/pe/py/app_cocoa.py index f7cbe73a..660faa3a 100644 --- a/pe/py/app_cocoa.py +++ b/pe/py/app_cocoa.py @@ -187,7 +187,7 @@ class DupeGuruPE(app_cocoa.DupeGuru): def _get_file(self, str_path): p = Path(str_path) - if (self.iphoto_libpath is not None) and (p in self.directories.iphoto_libpath[:-1]): + if (self.directories.iphoto_libpath is not None) and (p in self.directories.iphoto_libpath[:-1]): return IPhoto(p) return app_cocoa.DupeGuru._get_file(self, str_path)