瀏覽代碼

Fix typos so comment is readable

Mike Naberezny 9 年之前
父節點
當前提交
a037b43c30
共有 1 個文件被更改,包括 4 次插入4 次删除
  1. 4 4
      supervisor/xmlrpc.py

+ 4 - 4
supervisor/xmlrpc.py

@@ -380,10 +380,10 @@ class supervisor_xmlrpc_handler(xmlrpc_handler):
             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)