allow exceptions to be a list

This commit is contained in:
Raphael Deem
2017-03-07 16:22:23 -08:00
parent 19592e8eea
commit 86c5a569d5
2 changed files with 20 additions and 1 deletions

View File

@@ -227,7 +227,11 @@ class Sanic:
def response(handler):
for exception in exceptions:
self.error_handler.add(exception, handler)
if isinstance(exception, (tuple, list)):
for e in exception:
self.error_handler.add(e, handler)
else:
self.error_handler.add(exception, handler)
return handler
return response