summaryrefslogtreecommitdiff
path: root/megapixels/app
diff options
context:
space:
mode:
authoradamhrv <adam@ahprojects.com>2019-04-16 17:28:49 +0200
committeradamhrv <adam@ahprojects.com>2019-04-16 17:28:49 +0200
commit776ae57da4a27966d58aa76bcac1eed67b75687b (patch)
tree04e43810789e4c5bc9842108e8189ccaec9de2d2 /megapixels/app
parenta13e9d0471bc6f78692cc212541a9a5c659b4ef1 (diff)
add right-sidebar, add lsat_updated
Diffstat (limited to 'megapixels/app')
-rw-r--r--megapixels/app/site/parser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/megapixels/app/site/parser.py b/megapixels/app/site/parser.py
index 6b71e041..80ba9ece 100644
--- a/megapixels/app/site/parser.py
+++ b/megapixels/app/site/parser.py
@@ -62,7 +62,7 @@ def parse_markdown(metadata, sections, s3_path, skip_h1=False):
elif in_stats and not section.strip().startswith('## ') and 'end sidebar' not in section.lower():
current_group.append(section)
elif in_stats and section.strip().startswith('## ') or 'end sidebar' in section.lower():
- current_group = [format_section(current_group, s3_path, 'left-sidebar', tag='div')]
+ current_group = [format_section(current_group, s3_path, 'right-sidebar', tag='div')]
if 'end sidebar' not in section.lower():
current_group.append(section)
in_stats = False