aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r/views/views.py
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2015-06-12 14:34:13 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2015-06-12 14:34:13 +0200
commit4b5f9b105c8b600d1bf607bfb912bd46af12b0ac (patch)
tree23b0818e4955c1e8f2d9a71e6cd0bf2dfb081557 /pyaggr3g470r/views/views.py
parentNo need to display the /duplicates page when there is no duplicate. (diff)
downloadnewspipe-4b5f9b105c8b600d1bf607bfb912bd46af12b0ac.tar.gz
newspipe-4b5f9b105c8b600d1bf607bfb912bd46af12b0ac.tar.bz2
newspipe-4b5f9b105c8b600d1bf607bfb912bd46af12b0ac.zip
Typo.
Diffstat (limited to 'pyaggr3g470r/views/views.py')
-rw-r--r--pyaggr3g470r/views/views.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyaggr3g470r/views/views.py b/pyaggr3g470r/views/views.py
index f88e9fa4..6f17544c 100644
--- a/pyaggr3g470r/views/views.py
+++ b/pyaggr3g470r/views/views.py
@@ -448,7 +448,7 @@ def duplicates(feed_id=None):
duplicates = []
duplicates = utils.compare_documents(feed)
if len(duplicates) == 0:
- flash(gettext('No duplicates in the feed "{}"".').format(feed.title),
+ flash(gettext('No duplicates in the feed "{}".').format(feed.title),
'info')
return redirect(redirect_url())
return render_template('duplicates.html', duplicates=duplicates, feed=feed)
bgstack15