Small fixes + load own list through API

This commit is contained in:
relikd
2020-09-04 08:59:23 +02:00
parent 1d731e709f
commit 6f215595b6
12 changed files with 120 additions and 60 deletions

View File

@@ -125,7 +125,10 @@ def mv(path, to, printOmitPrefix=None):
def rm(path):
shutil.rmtree(path)
try:
shutil.rmtree(path)
except Exception:
pass
def dir_exists(path):