From a037b43c306f2e9a0a8549771568df5045659c9c Mon Sep 17 00:00:00 2001 From: Mike Naberezny Date: Sat, 19 Mar 2016 13:37:24 -0700 Subject: [PATCH] Fix typos so comment is readable --- supervisor/xmlrpc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/supervisor/xmlrpc.py b/supervisor/xmlrpc.py index e83dcf78e..eed67ddf2 100644 --- a/supervisor/xmlrpc.py +++ b/supervisor/xmlrpc.py @@ -380,10 +380,10 @@ def continue_request (self, data, request): try: logger.trace('XML-RPC method called: %s()' % method) value = self.call(method, params) - # application-specific: instead of we never want to - # marshal None (even though we could by saying allow_none=True - # in dumps within xmlrpc_marshall), this is meant as - # a debugging fixture, see issue 223. + # application-specific: we never want to marshal None (even + # though we could by saying allow_none=True in dumps within + # xmlrpc_marshall), this is meant as a debugging fixture, see: + # http://www.plope.com/software/collector/223 assert value is not None, ( 'return value from method %r with params %r is None' % (method, params)