diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-05-23 21:19:02 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-05-23 21:19:02 +0100 |
commit | f809cdcab09903e10eb6deb42e23ca03f2afbeca (patch) | |
tree | 32e15b925e704be3a50927717f388d436e3ba60a /app/utils.py | |
parent | d5342d7096e8bb568f1af7bdc9200b03537bb9fc (diff) | |
download | cheatdb-f809cdcab09903e10eb6deb42e23ca03f2afbeca.tar.xz |
Fix sass generation
Diffstat (limited to 'app/utils.py')
-rw-r--r-- | app/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/utils.py b/app/utils.py index 6be889e..e42c3cc 100644 --- a/app/utils.py +++ b/app/utils.py @@ -47,7 +47,7 @@ def doFileUpload(file, allowedExtensions, fileTypeName): return None filename = randomString(10) + "." + ext - file.save(os.path.join("public/uploads", filename)) + file.save(os.path.join("app/public/uploads", filename)) return "/uploads/" + filename |