diff options
Diffstat (limited to 'app/builder')
-rw-r--r-- | app/builder/base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/app/builder/base.py b/app/builder/base.py index 532deea..6122cc9 100644 --- a/app/builder/base.py +++ b/app/builder/base.py @@ -125,7 +125,6 @@ class BuildNew(): response = self.client.get('%s.txt' % url) self.write_file(path, response.content, ext='txt', filename=slug) - def build_feed(self, url_name): """ Not called, but available for subclassing @@ -387,7 +386,6 @@ class BuildSitemap(Build): response = c.get('/sitemap.xml', HTTP_HOST='127.0.0.1') self.write_file('', response.content, 'xml', 'sitemap') - class BuildWritingFeed(Build): def build(self): qs = apps.get_model('blog', 'entry').objects.filter(status__exact=1).order_by('-pub_date')[:20] |