summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-08-23 23:42:26 -0400
committerChris McDonough <chrism@plope.com>2011-08-23 23:42:26 -0400
commita8a9435e00a528cb13677e5b38415601a0cc3f8b (patch)
treefd18695a784380ca7f53dd57753d77de4dcb377b
parent04b7eae0bf933d6144f7cf9f339b9ed6153b9a0f (diff)
downloadpyramid-a8a9435e00a528cb13677e5b38415601a0cc3f8b.tar.gz
pyramid-a8a9435e00a528cb13677e5b38415601a0cc3f8b.tar.bz2
pyramid-a8a9435e00a528cb13677e5b38415601a0cc3f8b.zip
put match_param at the end to service external package unit tests
-rw-r--r--pyramid/config/views.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/config/views.py b/pyramid/config/views.py
index 0fdf1227f..06d6e901e 100644
--- a/pyramid/config/views.py
+++ b/pyramid/config/views.py
@@ -1047,8 +1047,8 @@ class ViewsConfiguratorMixin(object):
discriminator = [
'view', context, name, request_type, IView, containment,
- request_param, request_method, match_param, route_name, attr,
- xhr, accept, header, path_info]
+ request_param, request_method, route_name, attr,
+ xhr, accept, header, path_info, match_param]
discriminator.extend(sorted(custom_predicates))
discriminator = tuple(discriminator)
self.action(discriminator, register, order=PHASE3_CONFIG)