mirror of
https://github.com/fergalmoran/picard.git
synced 2026-02-25 09:03:59 +00:00
Copy value list in Metadata.update
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user