From e7e812413c314357249c9ee6d10f95c3d0cfcff5 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Sat, 14 Oct 2017 20:53:09 +1300 Subject: [PATCH] Removing debug echo --- VERSION.md | 2 +- mopidy_iris/handlers.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/VERSION.md b/VERSION.md index 3c8ff8c3..80d13b7d 100755 --- a/VERSION.md +++ b/VERSION.md @@ -1 +1 @@ -3.5.1 \ No newline at end of file +3.5.2 \ No newline at end of file diff --git a/mopidy_iris/handlers.py b/mopidy_iris/handlers.py index d6597425..a7fcc16a 100755 --- a/mopidy_iris/handlers.py +++ b/mopidy_iris/handlers.py @@ -201,10 +201,9 @@ class HttpHandler(tornado.web.RequestHandler): # when our request calls subsequent external requests (eg Spotify, Genius). # We don't need to wrap non-HTTPResponse responses as these are dicts if isinstance(response, tornado.httpclient.HTTPResponse): - print response.body response = { 'response_code': response.code, - 'response_reason': response.reason, + 'response_message': response.reason, 'response': response.body }