remove old extra dispatch method

This commit is contained in:
Steve Pulec 2013-03-23 10:00:43 -04:00
commit 2b63c79c90
2 changed files with 1 additions and 4 deletions

View file

@ -7,9 +7,6 @@ from moto.core.utils import headers_to_dict, camelcase_to_underscores, method_na
class BaseResponse(object):
def dispatch2(self, uri, method, body, headers):
return self.dispatch(uri, method, body, headers)
def dispatch(self, uri, method, body, headers):
if body:
querystring = parse_qs(body)