diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-01-24 19:51:54 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-01-24 19:51:54 +0100 |
commit | 205e01df28d3f52b7d01073a85d61074b3c50efe (patch) | |
tree | 57879ab64300b7113ada5ead1d6eb6531279857b /src | |
parent | 24b9261f486f68db6166a28f07af510a6830d17b (diff) | |
download | pyexiv2-205e01df28d3f52b7d01073a85d61074b3c50efe.tar.gz |
Choice is not a simple type.
Diffstat (limited to 'src')
-rw-r--r-- | src/pyexiv2/xmp.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/pyexiv2/xmp.py b/src/pyexiv2/xmp.py index 89957e4..b9ad245 100644 --- a/src/pyexiv2/xmp.py +++ b/src/pyexiv2/xmp.py @@ -64,7 +64,6 @@ class XmpTag(object): - alt, bag, seq: C{list} of the contained simple type - lang alt: C{dict} of (language-code: value) - Boolean: C{bool} - - Choice: [not implemented yet] - Colorant: [not implemented yet] - Date: C{datetime.date}, C{datetime.datetime} - Dimensions: [not implemented yet] @@ -252,10 +251,6 @@ class XmpTag(object): else: raise XmpValueError(value, type) - elif type == 'Choice': - # TODO - raise NotImplementedError('XMP conversion for type [%s]' % type) - elif type == 'Colorant': # TODO raise NotImplementedError('XMP conversion for type [%s]' % type) |