From 8a1c0f07807bb96449a34ef979ad3994fea6c64f Mon Sep 17 00:00:00 2001 From: Antoine VAN ELSTRAETE Date: Thu, 23 May 2019 23:36:10 +0200 Subject: [PATCH] =?UTF-8?q?exv.py=20:=20mise=20=C3=A0=20jour=20de=20la=20l?= =?UTF-8?q?iste=20avec=20.copy()=20(sinon=20les=20dictionnaires=20sont=20m?= =?UTF-8?q?is=20=C3=A0=20jour=20dans=20la=20liste=20=C3=A9galement...)=20(?= =?UTF-8?q?2)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- exv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exv.py b/exv.py index d856d06..3ebd207 100755 --- a/exv.py +++ b/exv.py @@ -58,7 +58,7 @@ def extractor(input_files, start, end, recursive, extensions): input_files = files for input_file in input_files: - exif_dict = usefull_exif + exif_dict = usefull_exif.copy() if not isfile(input_file): raise ValueError("{} doesn't exist here.".format(input_file)) exif_dict.update({'file': input_file})