diff --git a/mopidy/frontends/http/actor.py b/mopidy/frontends/http/actor.py index b6fb26d4..5e49d2cd 100644 --- a/mopidy/frontends/http/actor.py +++ b/mopidy/frontends/http/actor.py @@ -30,8 +30,7 @@ class HttpFrontend(pykka.ThreadingActor, CoreListener): def _setup_server(self): cherrypy.config.update({ 'engine.autoreload_on': False, - 'server.socket_host': ( - self.config['http']['hostname'].encode('utf-8')), + 'server.socket_host': self.config['http']['hostname'], 'server.socket_port': self.config['http']['port'], })