diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-23 08:44:51 +0200 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2015-04-23 08:44:51 +0200 |
commit | d6692a53a44823f600cf92c63fc1630a240859da (patch) | |
tree | c967dffff48f2eedfdf91c515037bf0cf2ce68b9 /pyaggr3g470r | |
parent | Automatically use the good Python executable for the classic crawler. (diff) | |
download | newspipe-d6692a53a44823f600cf92c63fc1630a240859da.tar.gz newspipe-d6692a53a44823f600cf92c63fc1630a240859da.tar.bz2 newspipe-d6692a53a44823f600cf92c63fc1630a240859da.zip |
Only display this message when the crawling has been launched.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r-- | pyaggr3g470r/views/feed.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views/feed.py b/pyaggr3g470r/views/feed.py index bc75aa29..50282454 100644 --- a/pyaggr3g470r/views/feed.py +++ b/pyaggr3g470r/views/feed.py @@ -165,7 +165,7 @@ def form(feed_id=None): if conf.CRAWLING_METHOD == "classic": utils.fetch(g.user.id, new_feed.id) - flash(gettext("Downloading articles for the new feed..."), 'info') + flash(gettext("Downloading articles for the new feed..."), 'info') return redirect(url_for('feed.form', feed_id=new_feed.id)) |