diff options
Diffstat (limited to 'app/photos/models.py')
-rw-r--r-- | app/photos/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/photos/models.py b/app/photos/models.py index 0d123c3..039ce47 100644 --- a/app/photos/models.py +++ b/app/photos/models.py @@ -172,7 +172,7 @@ def post_save_events(sender, update_fields, created, instance, **kwargs): img = Image.open(instance.image.path) instance.height = img.height instance.width = img.width - instance = readexif(instance) + #instance = readexif(instance) post_save.disconnect(post_save_events, sender=LuxImage) instance.save() post_save.connect(post_save_events, sender=LuxImage) |