Minor grammar fix
This commit is contained in:
parent
1f20a11284
commit
a59cbd4f52
1 changed files with 1 additions and 1 deletions
|
|
@ -146,5 +146,5 @@ class MethodView(View):
|
||||||
# retry with GET
|
# retry with GET
|
||||||
if meth is None and request.method == 'HEAD':
|
if meth is None and request.method == 'HEAD':
|
||||||
meth = getattr(self, 'get', None)
|
meth = getattr(self, 'get', None)
|
||||||
assert meth is not None, 'Not implemented method %r' % request.method
|
assert meth is not None, 'Unimplemented method %r' % request.method
|
||||||
return meth(*args, **kwargs)
|
return meth(*args, **kwargs)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue