http: Add missing string interpolation placeholder

This commit is contained in:
Stein Magnus Jodal 2014-07-23 17:35:55 +02:00
parent 292cf8f32d
commit ae49c4d113
2 changed files with 5 additions and 1 deletions

View File

@ -13,6 +13,10 @@ v0.19.1 (UNRELEASED)
Mopidy continue to work on Debian/Raspbian stable, where Tornado 2.3 is the
newest version available.
**HTTP**
- Add missing string interpolation placeholder.
**Development**
- ``mopidy --version`` and :meth:`mopidy.core.Core.get_version` now returns the

View File

@ -144,7 +144,7 @@ class JsonRpcHandler(tornado.web.RequestHandler):
'Sent RPC message to %s: %r',
self.request.remote_ip, response)
except Exception as e:
logger.error('HTTP JSON-RPC request error:', e)
logger.error('HTTP JSON-RPC request error: %s', e)
self.write_error(500)
def set_extra_headers(self):