Remove exiftool backup file
This commit is contained in:
parent
258fea6090
commit
b69f06b498
|
@ -250,7 +250,9 @@ class Media(object):
|
||||||
if(process_output.returncode != 0):
|
if(process_output.returncode != 0):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
os.remove('%s%s' % (source, '_original'))
|
exiftool_backup_file = '%s%s' % (source, '_original')
|
||||||
|
if(os.path.isfile(exiftool_backup_file) is True):
|
||||||
|
os.remove(exiftool_backup_file)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
|
|
Loading…
Reference in New Issue