Minor grammar fix

This commit is contained in:
Priit Laes 2011-12-08 14:41:29 +02:00 committed by Ron DuPlain
parent 1f20a11284
commit a59cbd4f52

View file

@ -146,5 +146,5 @@ class MethodView(View):
# retry with GET
if meth is None and request.method == 'HEAD':
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)