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, 1 insertions, 1 deletions
diff --git a/src/pyexiv2.py b/src/pyexiv2.py
index c32c384..8331ca9 100644
--- a/src/pyexiv2.py
+++ b/src/pyexiv2.py
@@ -478,7 +478,7 @@ class ExifTag(MetadataTag):
values = value.split()
if len(values) > 1:
self._value = \
- map(lambda x: ExifTag._convert_to_python(x, xtype), values)
+ map(lambda x: ExifTag._convert_to_python(x, xtype, fvalue), values)
return
self._value = ExifTag._convert_to_python(value, xtype, fvalue)