aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mediagoblin/util.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/mediagoblin/util.py b/mediagoblin/util.py
index a1af7bd0..f56bea43 100644
--- a/mediagoblin/util.py
+++ b/mediagoblin/util.py
@@ -353,8 +353,7 @@ class Pagination(object):
def get_page_url(self, request, page_no):
"""
- Get a new page based of the request, the new page number,
- and existing get parameters.
+ Get a new page url based of the request, and the new page number.
"""
path_info = request.path_info
get_params = request.GET
@@ -362,4 +361,3 @@ class Pagination(object):
new_get_params['page'] = page_no
return "%s?%s" % (
path_info, urllib.urlencode(new_get_params))
-