Update tag colors + ignore remove non-existent file

This commit is contained in:
relikd
2020-09-13 13:25:18 +02:00
parent 720b751cdd
commit 408fe305f8
4 changed files with 14 additions and 15 deletions

View File

@@ -82,7 +82,10 @@ def import_update():
if len(then_delete) > 0:
print('cleanup _in folder ...')
for x in then_delete:
os.remove(fname)
try:
os.remove(fname)
except FileNotFoundError:
pass
print('')