Skip to content

Commit 44e2e4e

Browse files
committed
Merge branch 'fix-nonetype-exception' of https://github.com/csparker247/pyexiftool into csparker247-fix-nonetype-exception
resolve bug in using the wrong common_args in the constructor. in Pull request #5 by @csparker247
2 parents 8eabe6c + 58eaf2a commit 44e2e4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exiftool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ def __init__(self, executable_=None, common_args=None, win_shell=True):
317317
else:
318318
raise TypeError("common_args not a list of strings")
319319

320-
self.no_output = '-w' in common_args
320+
self.no_output = '-w' in self.common_args
321321

322322

323323
def start(self):

0 commit comments

Comments
 (0)