diff --git a/rest_framework/schemas.py b/rest_framework/schemas.py index 437413355..7bf02177a 100644 --- a/rest_framework/schemas.py +++ b/rest_framework/schemas.py @@ -239,6 +239,9 @@ class EndpointInspector(object): if path.endswith('.{format}') or path.endswith('.{format}/'): return False # Ignore .json style URLs. + if path.endswith('.*'): + return False # Ignore wildcard URLs. + return True def get_allowed_methods(self, callback):