Fixed upload path type cast.

master
mihasinkec 3 years ago
parent 17f727f620
commit 9efc068de2

@ -76,7 +76,7 @@ class UploadHandler:
def get_uploads_subdir(self, dir_name):
subdir = self.config['UPLOADS_DIR'] / dir_name
subdir = Path(self.config['UPLOADS_DIR']) / dir_name
if not subdir.exists():
subdir.mkdir(parents=True)
return subdir

Loading…
Cancel
Save