From 860fce03cf1efccca8fe6378b952dc4bde51d31e Mon Sep 17 00:00:00 2001 From: Blaise Thompson Date: Sun, 29 Nov 2020 15:51:26 -0600 Subject: bluesky for the rest of us --- build.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'build.py') 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() -- cgit v1.2.3