Add reloading support to Docker container

This commit is contained in:
rubenwardy
2020-01-18 01:38:00 +00:00
parent 095494f96f
commit 077bdeb01c
6 changed files with 11 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ from PIL import Image
ALLOWED_RESOLUTIONS=[(100,67), (270,180), (350,233)]
def mkdir(path):
assert(path != "" and path is not None)
assert path != "" and path is not None
if not os.path.isdir(path):
os.mkdir(path)