summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ftplugin/hackernews.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ftplugin/hackernews.py b/ftplugin/hackernews.py
index 0f09091..4683d3d 100644
--- a/ftplugin/hackernews.py
+++ b/ftplugin/hackernews.py
@@ -178,7 +178,8 @@ def link(external=False):
bwrite("%s (%s)" % (item['title'], item['domain']))
else:
bwrite(item['title'])
- if item.get('comments_count', None) is not None:
+ if item.get('comments_count', None) is not None \
+ and item['type'] != "job":
bwrite("%d points by %s %s | %d comments"
% (item['points'], item['user'], item['time_ago'],
item['comments_count']))