diff --git a/rida.py b/rida.py index a542d81d..6849a00c 100755 --- a/rida.py +++ b/rida.py @@ -51,7 +51,7 @@ db = database.Database() def submit_build(): """Handles new module build submissions.""" try: - r = json.dumps(request.data) + r = json.loads(request.data.decode('utf-8')) except: return "Invalid JSON submitted", 400 if "scmurl" not in r: