##// END OF EJS Templates
api: params should be plain dictionary
ergo -
Show More
@@ -326,7 +326,7 b' def airbrake_xml_compat(request):'
326 326 else:
327 327 check_cors(request, application, should_return=False)
328 328
329 params = request.params.copy()
329 params = dict(request.params.copy())
330 330
331 331 error_dict = parse_airbrake_xml(request)
332 332 schema = ReportListSchema_0_5().bind(utcnow=datetime.datetime.utcnow())
General Comments 0
You need to be logged in to leave comments. Login now