summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2020-11-29 15:51:26 -0600
committerBlaise Thompson <blaise@untzag.com>2020-11-29 15:51:26 -0600
commit860fce03cf1efccca8fe6378b952dc4bde51d31e (patch)
tree090743b74f159ac8e4492538cc1a2bc8fae78796 /build.py
parentffb2a1bdf0ae43db67f0183c37df4e9a461f05e1 (diff)
bluesky for the rest of us
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/build.py b/build.py
index 56196d2..3394180 100755
--- a/build.py
+++ b/build.py
@@ -31,6 +31,8 @@ class Post:
posts = []
for post in os.listdir(__here__ / "posts"):
+ if len(post) < 3:
+ continue
with open(__here__ / "posts" / post, "r") as f:
content = md.convert(f.read())
kwargs = dict()