Copy value list in Metadata.update

This commit is contained in:
Michael Wiencek
2013-06-30 17:56:00 -05:00
parent fd30cb62ee
commit fe17c2cb3c

View File

@@ -231,7 +231,7 @@ class Metadata(dict):
def update(self, other):
for key in other.iterkeys():
self.set(key, other.getall(key))
self.set(key, other.getall(key)[:])
if other.images:
self.images = other.images[:]
if other.length: