From d3967dcd4e2968d9794e1505389d6dd0528915c8 Mon Sep 17 00:00:00 2001 From: Christophe de Vienne Date: Tue, 24 Apr 2012 12:46:55 +0200 Subject: [PATCH] Remove a debug print statement --- wsme/protocols/restjson.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wsme/protocols/restjson.py b/wsme/protocols/restjson.py index 6127c75..43d0b4d 100644 --- a/wsme/protocols/restjson.py +++ b/wsme/protocols/restjson.py @@ -213,7 +213,6 @@ class RestJsonProtocol(RestProtocol): def parse_args(self, body): raw_args = json.loads(body) - print(raw_args) return raw_args def encode_result(self, context, result):