Bug#4919: Fixed error in reading and processing Xmp, Iptc keys in pyexiv2-0.1.3. Thanks Benny Malengier.

svn: r17649
This commit is contained in:
Rob G. Healey 2011-06-02 00:53:29 +00:00
parent 5d467fc7ea
commit 7ddabca58f

View File

@ -610,10 +610,8 @@ class EditExifMetadata(Gramplet):
return
# get all KeyTags for this image for diplay only...
self.MediaDataTags = [KeyTag for KeyTag in chain(
self.plugin_image.exifKeys(),
self.plugin_image.xmpKeys(),
self.plugin_image.iptcKeys() ) ]
self.MediaDataTags = [KeyTag for KeyTag in self.plugin_image.exifKeys() ]
else:
try:
self.plugin_image.read()