[fix] mutex deltion

This commit is contained in:
Christian Fraß 2023-05-20 09:14:27 +02:00
parent e3d85dd1a8
commit 415fe597b2

View file

@ -378,7 +378,10 @@ def main():
)
)
_os.remove(args.mutex_path)
if (not _os.exists(args.mutex_path)):
pass
else:
_os.remove(args.mutex_path)
main()