Update outdated docstrings in MpdSession

This commit is contained in:
Stein Magnus Jodal 2011-06-03 16:57:48 +02:00
parent cbdc37a24d
commit d4ab666b21

View File

@ -45,7 +45,7 @@ class MpdSession(asynchat.async_chat):
logger.warning(u'Received invalid data: %s', e)
def handle_request(self, request):
"""Handle request by sending it to the MPD frontend."""
"""Handle request using the MPD command handlers."""
if not self.authenticated:
(self.authenticated, response) = self.check_password(request)
if response is not None:
@ -56,7 +56,7 @@ class MpdSession(asynchat.async_chat):
self.handle_response(response)
def handle_response(self, response):
"""Handle response from the MPD frontend."""
"""Handle response from the MPD command handlers."""
self.send_response(LINE_TERMINATOR.join(response))
def send_response(self, output):