diff options
author | luxagraf <sng@luxagraf.net> | 2016-03-31 09:59:59 -0400 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-03-31 09:59:59 -0400 |
commit | f81d4cdc61baf6904746ace7226eb6031de32b1a (patch) | |
tree | 739f1ad3c091cda86d1cca075dcf262ea7b27aa3 /app/builder | |
parent | d39834b0ba34c9f67d85b6168c75d4d2e947c5ab (diff) |
fixed a few bugs on live site with new syndication system
Diffstat (limited to 'app/builder')
-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 5c8c322..1507ece 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) |