From cceb77d7a12a06f50c8f409a9785e84896957b1b Mon Sep 17 00:00:00 2001 From: James Muscat Date: Wed, 17 Dec 2014 14:11:24 +0000 Subject: [PATCH] We don't actually want to return the original JSON. --- src/eddn/Gateway.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eddn/Gateway.py b/src/eddn/Gateway.py index 88246a1..7c962fe 100644 --- a/src/eddn/Gateway.py +++ b/src/eddn/Gateway.py @@ -135,7 +135,7 @@ def parse_and_error_handle(data): return 'OK' else: response.status = 400 - return "FAIL: " + str(parsed_message) + str(validationResults.messages) + return "FAIL: " + str(validationResults.messages) @post('/upload/')