diff --git a/mopidy/frontends/mpd/protocol/__init__.py b/mopidy/frontends/mpd/protocol/__init__.py index dbc85d78..dbb96a1b 100644 --- a/mopidy/frontends/mpd/protocol/__init__.py +++ b/mopidy/frontends/mpd/protocol/__init__.py @@ -44,7 +44,7 @@ def handle_request(pattern, auth_required=True): For example, if the command is ``do that thing`` the ``what`` argument will be ``this thing``:: - @handle_request('^do\ (?P.+)$') + @handle_request('do\ (?P.+)$') def do(what): ...