diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-09 22:37:58 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2014-04-09 22:37:58 +0200 |
commit | 5936c55330e9aba9023b194ac5a3322fc0689563 (patch) | |
tree | 245a10d785469e07c48c5d186cff2ef92465a2e7 | |
parent | Updated README. (diff) | |
download | newspipe-5936c55330e9aba9023b194ac5a3322fc0689563.tar.gz newspipe-5936c55330e9aba9023b194ac5a3322fc0689563.tar.bz2 newspipe-5936c55330e9aba9023b194ac5a3322fc0689563.zip |
Updated README.
-rw-r--r-- | README.rst | 5 | ||||
-rw-r--r-- | pyaggr3g470r/feedgetter.py | 2 |
2 files changed, 4 insertions, 3 deletions
@@ -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 = "" |