Explorar el Código

correctly dump error response

Bastien Sevajol hace 6 años
padre
commit
ea31eb8ac9
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      hapic/context.py

+ 2 - 1
hapic/context.py Ver fichero

@@ -206,8 +206,9 @@ class BaseContext(ContextInterface):
206 206
                             exc,
207 207
                             include_traceback=self.is_debug(),
208 208
                         )
209
+                        dumped = error_builder.dump(error_body).data
209 210
                         return self.get_response(
210
-                            json.dumps(error_body),
211
+                            json.dumps(dumped),
211 212
                             handled_exception.http_code,
212 213
                         )
213 214
                 raise exc