[fix] mutex deltion
This commit is contained in:
parent
e3d85dd1a8
commit
415fe597b2
|
|
@ -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()
|
||||
|
|
|
|||
Loading…
Reference in a new issue