From 1a2b14bb478ed0f66bbc1ace4e0913cb92ffd1d3 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 6 Oct 2015 19:10:00 +0200 Subject: [PATCH] More python insanity --- scanner/PhotoAlbum.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scanner/PhotoAlbum.py b/scanner/PhotoAlbum.py index 1bdb16d..461a088 100644 --- a/scanner/PhotoAlbum.py +++ b/scanner/PhotoAlbum.py @@ -165,6 +165,8 @@ class Photo(object): exif = {} for tag, value in info.items(): decoded = TAGS.get(tag, tag) + if (isinstance(value, tuple) or isinstance(value, list)) and (isinstance(decoded, str) or isinstance(decoded, unicode)) and decoded.startswith("DateTime") and len(value) >= 1: + value = value[0] if isinstance(value, str) or isinstance(value, unicode): value = value.strip().partition("\x00")[0] if (isinstance(decoded, str) or isinstance(decoded, unicode)) and decoded.startswith("DateTime"):