You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason PIL.ExifTags is reading my LensModel as an int, so the strip() call fails here:
INFO: Wrong type <class 'int'> for LensModel:1
Traceback (most recent call last):
[...]
File "/home/mdione/src/projects/nikola-gallery/lib/python3.8/site-packages/sigal/image.py", line 293, in get_exif_tags
simple[tag] = data[tag].strip()
AttributeError: 'int' object has no attribute 'strip'
(I added a log line to see the type, tag and value; and removed the rest of the stack trace)
The text was updated successfully, but these errors were encountered:
For some reason
PIL.ExifTags
is reading myLensModel
as anint
, so thestrip()
call fails here:(I added a log line to see the type, tag and value; and removed the rest of the stack trace)
The text was updated successfully, but these errors were encountered: