aboutsummaryrefslogtreecommitdiff
path: root/app/views/sass.py
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2018-05-23 21:19:02 +0100
committerrubenwardy <rw@rubenwardy.com>2018-05-23 21:19:02 +0100
commitf809cdcab09903e10eb6deb42e23ca03f2afbeca (patch)
tree32e15b925e704be3a50927717f388d436e3ba60a /app/views/sass.py
parentd5342d7096e8bb568f1af7bdc9200b03537bb9fc (diff)
downloadcheatdb-f809cdcab09903e10eb6deb42e23ca03f2afbeca.tar.xz
Fix sass generation
Diffstat (limited to 'app/views/sass.py')
-rw-r--r--app/views/sass.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/sass.py b/app/views/sass.py
index 2ae3896..825f494 100644
--- a/app/views/sass.py
+++ b/app/views/sass.py
@@ -45,7 +45,7 @@ def _getDirPath(originalPath, create=False):
return path
-def sass(app, inputDir='scss', outputPath='static', force=False, cacheDir=None):
+def sass(app, inputDir='scss', outputPath='static', force=False, cacheDir="public/static"):
static_url_path = app.static_url_path
inputDir = _getDirPath(inputDir)
cacheDir = _getDirPath(cacheDir or outputPath, True)