aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/decorators.py
diff options
context:
space:
mode:
Diffstat (limited to 'mediagoblin/decorators.py')
-rw-r--r--mediagoblin/decorators.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/decorators.py b/mediagoblin/decorators.py
index 8f107b6f..c594f445 100644
--- a/mediagoblin/decorators.py
+++ b/mediagoblin/decorators.py
@@ -58,6 +58,6 @@ def uses_pagination(controller):
except ValueError:
return exc.HTTPNotFound()
- return controller(request, page, *args, **kwargs)
+ return controller(request, page=page, *args, **kwargs)
return _make_safe(wrapper,controller)