Fixed typos in wsgi.py

Change-Id: Ifeabf94abbb8b0e799a4c9ae5a4315a143aa77a4
This commit is contained in:
Yi Zhao 2016-02-29 14:15:36 +08:00
parent 4c65e2ff1e
commit ce79212e3d
1 changed files with 1 additions and 1 deletions

View File

@ -633,7 +633,7 @@ class Resource(Application):
return response
def dispatch(self, request, action, action_args):
"""Find action-spefic method on controller and call it."""
"""Find action-specific method on controller and call it."""
controller_method = getattr(self.controller, action)
try: