summaryrefslogtreecommitdiff
path: root/app/builder/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/builder/views.py')
-rw-r--r--app/builder/views.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/app/builder/views.py b/app/builder/views.py
index 4547689..9e4671e 100644
--- a/app/builder/views.py
+++ b/app/builder/views.py
@@ -5,7 +5,7 @@ from src.build import builder as src_builder
from jrnl.build import archive_builder, detail_builder, home_builder, rss_builder, map_builder
from resume.build import builder as resume_builder
from books.build import builder as book_builder
-from birds.build import builder as bird_builder
+from sightings.build import builder as sightings_builder
from photos.build import builder as photo_builder
from figments.build import builder as figments_builder
from notes.build import builder as notes_builder
@@ -41,9 +41,9 @@ def do_build(request):
elif section == 'buildbooks':
context = {'message': 'Writing Book Pages to Disk'}
book_builder()
- elif section == 'buildbirds':
- context = {'message': 'Writing Bird Pages to Disk'}
- bird_builder()
+ elif section == 'buildsightings':
+ context = {'message': 'Writing Sightings Pages to Disk'}
+ sightings_builder()
elif section == 'src':
context = {'message': 'Writing src section to Disk'}
src_builder()