Dann239
Mar 06, 2014 - 02:59
https://gist.github.com/PyDann/2ae90ccadab4c2133766
Getting a trunc attribute error.
https://gist.github.com/PyDann/2ae90ccadab4c2133766
Getting a trunc attribute error.
EXIF = photos.get_metadata(PIX)
get_metadata() is looking for an int but PIX is an Image.Image. Try EXIF = photos.get_metadata(-1) instead.
I put other comments in the gist.
Updated