1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2025-03-09 21:24:36 +00:00

[#159 state:fixed] Added 'orf' to the list of supported extensions under cocoa (they work fine, I tried em).

This commit is contained in:
Virgil Dupras 2011-06-14 13:54:50 -04:00
parent caee5e37f0
commit 2a6f524a5b

View File

@ -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))