aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xpyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 08222a3d..8a69d794 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -73,7 +73,7 @@ class Root:
html += """Your feeds (%s):<br />\n""" % len(self.articles.keys())
for rss_feed_id in self.articles.keys():
- if self.feeds[rss_feed_id][1] != "0":
+ if self.feeds[rss_feed_id][1] != 0:
# not readed articles are in bold
not_read_begin = "<b>"
not_read_end = "</b>"
bgstack15