diff options
author | jwansek <eddie.atten.ea29@gmail.com> | 2025-04-07 14:56:02 -0400 |
---|---|---|
committer | jwansek <eddie.atten.ea29@gmail.com> | 2025-04-07 14:56:02 -0400 |
commit | f422d957177563a89a4b7792fe395588bb157e10 (patch) | |
tree | 68455d0ac7ac52bb1ae22cf6a914ed8190c02267 /app.py | |
parent | cf227d4434bbcb47e7a2862a777cc579fefdb1a8 (diff) | |
download | eda.gay-f422d957177563a89a4b7792fe395588bb157e10.tar.gz eda.gay-f422d957177563a89a4b7792fe395588bb157e10.zip |
Fixed bug where there could be duplicate git commits
Diffstat (limited to 'app.py')
-rwxr-xr-x | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ def index(): **get_template_items("eden's site :3", db), markdown = parser.parse_text(f.read())[0], featured_thoughts = db.get_featured_thoughts(), - commits = db.get_cached_commits()[:7], + commits = db.get_cached_commits()[:10], sidebar_img = get_sidebar_img(db) ) |