cc-4105: placed docstrings inside of methods instead of above

This commit is contained in:
Rudi Grinberg 2012-07-16 15:51:51 -04:00
parent 1c084a3101
commit ebd12448ee
1 changed files with 15 additions and 15 deletions

View File

@ -51,13 +51,13 @@ class AirtimeNotifier(Notifier):
return True return True
def handle_message(self, body, message):
""" """
Messages received from RabbitMQ are handled here. These messages Messages received from RabbitMQ are handled here. These messages
instruct media-monitor of events such as a new directory being watched, instruct media-monitor of events such as a new directory being watched,
file metadata has been changed, or any other changes to the config of file metadata has been changed, or any other changes to the config of
media-monitor via the web UI. media-monitor via the web UI.
""" """
def handle_message(self, body, message):
# ACK the message to take it off the queue # ACK the message to take it off the queue
message.ack() message.ack()