Bugfixe : valeur par défaut quand l'orientation n'est pas dispo.
[Photo.git] / TileSupport.py
index 905b0f4..1dd9c0f 100644 (file)
@@ -92,7 +92,7 @@ class TileSupport :
                f = bf.open('r')
                
                orientation = self.tiffOrientation()
-               rotation, flip = TIFF_ORIENTATIONS[orientation]
+               rotation, flip = TIFF_ORIENTATIONS.get(orientation, (0, False))
                
                if rotation and flip :
                        tf = TemporaryFile(mode='w+')