From 24dbdc820292dcf227443380320549cb41dddce9 Mon Sep 17 00:00:00 2001 From: Nicholas Staples Date: Fri, 18 Mar 2016 15:37:58 +0000 Subject: [PATCH] Syntax fix --- app/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/utils.py b/app/utils.py index 8f4ae81be..6bf79718f 100644 --- a/app/utils.py +++ b/app/utils.py @@ -96,7 +96,7 @@ def get_page_from_request(): def generate_previous_next_dict(view, view_dict, page, title, label): return { - 'url': url_for(view, **view_dict, page=page), + 'url': url_for(view, page=page, **view_dict), 'title': title, 'label': label }