diff --git a/apiserver/feeds/hackernews.py b/apiserver/feeds/hackernews.py index 8d6fe5b..4f400b7 100644 --- a/apiserver/feeds/hackernews.py +++ b/apiserver/feeds/hackernews.py @@ -30,7 +30,7 @@ def api(route, ref=None): return False def feed(): - return [str(x) for x in api(API_TOPSTORIES)] or [] + return [str(x) for x in api(API_TOPSTORIES) or []] def comment(i): if 'author' not in i: