diff options
-rw-r--r-- | app/builder/base.py | 2 | ||||
-rw-r--r-- | app/syndication/models.py | 2 | ||||
-rw-r--r-- | app/syndication/templatetags/facebook_processor.py | 2 |
3 files changed, 3 insertions, 3 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) diff --git a/app/syndication/models.py b/app/syndication/models.py index a58da8d..cc4f4a4 100644 --- a/app/syndication/models.py +++ b/app/syndication/models.py @@ -4,7 +4,7 @@ from django.contrib.contenttypes.fields import GenericForeignKey from django.db.models.signals import post_save from django.dispatch import receiver -from .medium import post_to_medium +from .syndicators import post_to_medium class Syndicate(models.Model): diff --git a/app/syndication/templatetags/facebook_processor.py b/app/syndication/templatetags/facebook_processor.py index d940838..59c4812 100644 --- a/app/syndication/templatetags/facebook_processor.py +++ b/app/syndication/templatetags/facebook_processor.py @@ -1,7 +1,7 @@ from django import template from bs4 import BeautifulSoup -from .medium import absolute_urls_for_syndication +from syndication.syndicators import absolute_urls_for_syndication register = template.Library() |