aboutsummaryrefslogtreecommitdiff
path: root/pyaggr3g470r
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2014-09-20 16:20:08 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2014-09-20 16:20:08 +0200
commitf3e143de0ff1ff108ce6471361aafbcec78df4a3 (patch)
treea7ae7ab1c189a45ec76e6143817acb5cc44032df /pyaggr3g470r
parentThis release fixes a major bug introduced with the version 0.9.7 of SQLAlchemy. (diff)
downloadnewspipe-f3e143de0ff1ff108ce6471361aafbcec78df4a3.tar.gz
newspipe-f3e143de0ff1ff108ce6471361aafbcec78df4a3.tar.bz2
newspipe-f3e143de0ff1ff108ce6471361aafbcec78df4a3.zip
Some minor uninteresting changes.
Diffstat (limited to 'pyaggr3g470r')
-rw-r--r--pyaggr3g470r/views.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py
index d20df5b6..ef3b908e 100644
--- a/pyaggr3g470r/views.py
+++ b/pyaggr3g470r/views.py
@@ -2,9 +2,9 @@
# -*- coding: utf-8 -*-
# pyAggr3g470r - A Web based news aggregator.
-# Copyright (C) 2010-2014 Cédric Bonhomme - http://cedricbonhomme.org/
+# Copyright (C) 2010-2014 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://bitbucket.org/cedricbonhomme/pyaggr3g470r/
+# For more information : https://bitbucket.org/cedricbonhomme/pyaggr3g470r
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
@@ -241,7 +241,7 @@ def home():
.filter(Article.readed == False, Article.user_id == g.user.id)\
.group_by(Article.feed_id).all()
def gen_url(filter_=filter_, limit=limit, feed=feed_id):
- return '/?filter_=%s&limit=%s&feed=%d' % (filter_, limit, feed)
+ return '?filter_=%s&limit=%s&feed=%d' % (filter_, limit, feed)
return render_template('home.html', gen_url=gen_url, feed_id=feed_id,
filter_=filter_, limit=limit, feeds=feeds,
unread=dict(unread), articles=articles.all())
bgstack15