Fix param regex for path params with complex filters
This commit is contained in:
parent
f206b4b95e
commit
69e476b1f4
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ from endpoints.api import (ApiResource, resource, method_metadata, nickname, tru
|
|||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
PARAM_REGEX = re.compile(r'<([\w]+:)?([\w]+)>')
|
||||
PARAM_REGEX = re.compile(r'<([^:>]+:)*([\w]+)>')
|
||||
|
||||
|
||||
TYPE_CONVERTER = {
|
||||
|
|
Reference in a new issue