mopidy/mopidy/frontends/mpd/protocol/empty.py
Stein Magnus Jodal 4cd0f8bd65 mpd: Remove redundant ^ from all patterns
re.match() only matches on the start of the line anyway.
2013-11-17 15:17:30 +01:00

10 lines
226 B
Python

from __future__ import unicode_literals
from mopidy.frontends.mpd.protocol import handle_request
@handle_request(r'[\ ]*$')
def empty(context):
"""The original MPD server returns ``OK`` on an empty request."""
pass