diff options
author | luxagraf <sng@luxagraf.net> | 2016-12-28 11:16:22 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-12-28 11:16:22 -0500 |
commit | 8866872e437c07f3356cc97ee55193c2c0511390 (patch) | |
tree | 2c57d6bd32badbbf02fc6078c743bad9e0975d65 | |
parent | 0a579855fcac0456c27d575969568f91f360b60f (diff) |
fixed path bug
-rw-r--r-- | app/builder/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/builder/base.py b/app/builder/base.py index f18523f..67a259e 100644 --- a/app/builder/base.py +++ b/app/builder/base.py @@ -14,7 +14,7 @@ class _FileWriter(object): """ Given a path and text object; write the page to disc """ - def __init__(self, path, text_object, ext='html', filename='index', base_path=settings.NFLATFILES_ROOT): + def __init__(self, path, text_object, ext='html', filename='index', base_path=settings.FLATFILES_ROOT): self.path = '%s%s' % (base_path, path) if not os.path.isdir(self.path): os.makedirs(self.path) |