aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/web/views/feed.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/web/views/feed.py b/src/web/views/feed.py
index 959179f9..58628d6a 100644
--- a/src/web/views/feed.py
+++ b/src/web/views/feed.py
@@ -245,5 +245,5 @@ def duplicates(feed_id):
if len(duplicates) == 0:
flash(gettext('No duplicates in the feed "{}".').format(feed.title),
'info')
- return redirect('home')
+ return redirect(url_for('home'))
return render_template('duplicates.html', duplicates=duplicates, feed=feed)
bgstack15