summaryrefslogtreecommitdiff
path: root/app/builder
diff options
context:
space:
mode:
Diffstat (limited to 'app/builder')
-rw-r--r--app/builder/base.py2
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)