fixed regex (test)

This commit is contained in:
mdipierro
2016-07-17 15:12:04 -05:00
parent 665e14186e
commit 7aa617a68f
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -0,0 +1 @@
127.0.0.1 1 1468786268
+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@ -])[.])*$',
)
return router