aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 20:21:27 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-02-09 20:21:27 +0100
commit002f195f889f2dfa9a0bd308ecc770e768dbfb83 (patch)
tree3f030fa75d1ee468d17b16578242dc77eb8cfea0 /pyaggr3g470r/views.py
parenttest (diff)
downloadnewspipe-002f195f889f2dfa9a0bd308ecc770e768dbfb83.tar.gz
newspipe-002f195f889f2dfa9a0bd308ecc770e768dbfb83.tar.bz2
newspipe-002f195f889f2dfa9a0bd308ecc770e768dbfb83.zip
test
Diffstat (limited to 'pyaggr3g470r/views.py')
-rw-r--r--pyaggr3g470r/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index fd3d2e60..f0422c3c 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -663,7 +663,7 @@ def edit_feed(feed_id=None):
db.session.commit()
flash(gettext('Feed successfully created.'), 'success')
- utils.fetch(g.user.email, Feed.query.filter(Feed.link == form.link.data).first().id)
+ utils.fetch(g.user.id, Feed.query.filter(Feed.link == form.link.data).first().id)
flash(gettext("Downloading articles for the new feed..."), 'info')
return redirect('/edit_feed/' + str(new_feed.id))
bgstack15