diff --git a/mopidy/http/actor.py b/mopidy/http/actor.py index 7f79f2bb..eee09ffe 100644 --- a/mopidy/http/actor.py +++ b/mopidy/http/actor.py @@ -96,7 +96,7 @@ class HttpFrontend(pykka.ThreadingActor, CoreListener): result = [] for static in self.statics: result.append(( - r'/{}/?(.*)'.format(static['name']), + r'/%s/?(.*)' % static['name'], handlers.StaticFileHandler, { 'path': static['path'],