view and delete orphaned files

miscelaneous bug fixes discovered during testing
This commit is contained in:
smilerz
2023-11-10 13:33:16 -06:00
parent c654cc469a
commit 46a50d7835
6 changed files with 205 additions and 90 deletions

View File

@ -7,7 +7,7 @@ class Round(Func):
def str2bool(v):
if type(v) == bool or v is None:
if isinstance(v, bool) or v is None:
return v
else:
return v.lower() in ("yes", "true", "1")