aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:44:51 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-04-23 08:44:51 +0200
commitd6692a53a44823f600cf92c63fc1630a240859da (patch)
treec967dffff48f2eedfdf91c515037bf0cf2ce68b9 /pyaggr3g470r/views
parentAutomatically use the good Python executable for the classic crawler. (diff)
downloadnewspipe-d6692a53a44823f600cf92c63fc1630a240859da.tar.gz
newspipe-d6692a53a44823f600cf92c63fc1630a240859da.tar.bz2
newspipe-d6692a53a44823f600cf92c63fc1630a240859da.zip
Only display this message when the crawling has been launched.
Diffstat (limited to 'pyaggr3g470r/views')
-rw-r--r--pyaggr3g470r/views/feed.py2
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))
bgstack15