X-Git-Url: https://git.llucax.com/software/pymin.git/blobdiff_plain/5b7bdbf7f0793cd5d71a7e1bcdf5f1ae2402e138..70672dbd46126ba2b5a60a034c0a8a13385d4510:/pymindaemon.py diff --git a/pymindaemon.py b/pymindaemon.py index ec15356..b440c52 100644 --- a/pymindaemon.py +++ b/pymindaemon.py @@ -74,7 +74,7 @@ class PyminDaemon(eventloop.EventLoop): traceback.print_exc() # TODO logging! response = u'ERROR ' if result is None: - response += u'0' + response += u'0\n' else: response += u'%d\n%s' % (len(result), result) self.file.sendto(response, addr) @@ -88,13 +88,11 @@ class PyminDaemon(eventloop.EventLoop): if __name__ == '__main__': - from dispatcher import handler - - @handler + @handler(u"Print all the arguments, return nothing.") def test_handler(*args): print 'test:', args - @handler + @handler(u"Echo the message passed as argument.") def echo_handler(message): print 'echo:', message return message