fixed issue #1362, == in args

This commit is contained in:
mdipierro
2016-07-11 03:20:38 -05:00
parent 64df136e69
commit 4a3ccfdeab
+1 -1
View File
@@ -81,7 +81,7 @@ def _router_default():
# pathological backtracking from nested patterns.
#
file_match = r'([-+=@$%\w]|(?<=[-+=@$%\w])[./])*$', # legal static subpath
args_match=r'([\w@ -]|(?<=[\w@ -])[.=])*$', # legal arg in args
args_match=r'([\w@ -=]|(?<=[\w@ -=])[.])*$', # legal arg in args
)
return router