mpd: Remove redundant ^ anchor in example pattern

This commit is contained in:
Stein Magnus Jodal 2013-11-19 09:09:19 +01:00
parent ba6e70b30b
commit 4a61c7e8ca

View File

@ -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<what>.+)$')
@handle_request('do\ (?P<what>.+)$')
def do(what):
...