aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst5
-rw-r--r--pyaggr3g470r/feedgetter.py2
2 files changed, 4 insertions, 3 deletions
diff --git a/README.rst b/README.rst
index 7cc4458f..948d1e08 100644
--- a/README.rst
+++ b/README.rst
@@ -30,6 +30,9 @@ Deployment
This application can be deployed both on Heroku and on a traditional server.
+After installation, you will be able to connect with the e-mail *root@pyAggr3g470r.localhost* and the password *root*.
+
+
Deploying the application on Heroku
'''''''''''''''''''''''''''''''''''
@@ -76,8 +79,6 @@ For example if you want to use pyAggr3g470r with Tor/Privoxy, you just have to s
*http_proxy* (most of the time: ``http_proxy = 127.0.0.1:8118``). Else leave the value blank.
-You can connect with the email *root@pyAggr3g470r.localhost* and the password *root*. You should change these information.
-
Automatic updates
-----------------
diff --git a/pyaggr3g470r/feedgetter.py b/pyaggr3g470r/feedgetter.py
index 90fb45b3..c503d17c 100644
--- a/pyaggr3g470r/feedgetter.py
+++ b/pyaggr3g470r/feedgetter.py
@@ -150,7 +150,7 @@ class FeedGetter(object):
])
list_articles = Article.query.filter(Article.link == nice_url).all()
- if list_articles != [] and len([article for article in list_articles if article.source.subscriber.id == self.user.id]) != 0:
+ if list_articles != [] and len([article1 for article1 in list_articles if article1.source.subscriber.id == self.user.id]) != 0:
continue
description = ""
bgstack15