From 2a6f524a5b3816b6ea7a4fee3c3ac9dffe8b2e5b Mon Sep 17 00:00:00 2001 From: Virgil Dupras Date: Tue, 14 Jun 2011 13:54:50 -0400 Subject: [PATCH] [#159 state:fixed] Added 'orf' to the list of supported extensions under cocoa (they work fine, I tried em). --- core_pe/app_cocoa.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core_pe/app_cocoa.py b/core_pe/app_cocoa.py index 787c43ad..b22ab1e0 100644 --- a/core_pe/app_cocoa.py +++ b/core_pe/app_cocoa.py @@ -28,7 +28,7 @@ IPHOTO_PATH = Path('iPhoto Library') class Photo(PhotoBase): HANDLED_EXTS = PhotoBase.HANDLED_EXTS.copy() - HANDLED_EXTS.update({'psd', 'nef', 'cr2'}) + HANDLED_EXTS.update({'psd', 'nef', 'cr2', 'orf'}) def _plat_get_dimensions(self): return _block_osx.get_image_size(str(self.path))