aboutsummaryrefslogtreecommitdiffstats
path: root/src/pyexiv2.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/pyexiv2.py')
-rw-r--r--src/pyexiv2.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pyexiv2.py b/src/pyexiv2.py
index ec4a892..b1dd88f 100644
--- a/src/pyexiv2.py
+++ b/src/pyexiv2.py
@@ -471,6 +471,8 @@ class Image(libpyexiv2.Image):
value = self.getIptcTagValue(key)
if len(value) == 1:
value = value[0]
+ elif len(value) > 1:
+ value = tuple(value)
self.__iptcTagsDict[key] = value
return value
else: