Skip to content

Commit a037b43

Browse files
committed
Fix typos so comment is readable
1 parent d5cbaaa commit a037b43

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

supervisor/xmlrpc.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -380,10 +380,10 @@ def continue_request (self, data, request):
380380
try:
381381
logger.trace('XML-RPC method called: %s()' % method)
382382
value = self.call(method, params)
383-
# application-specific: instead of we never want to
384-
# marshal None (even though we could by saying allow_none=True
385-
# in dumps within xmlrpc_marshall), this is meant as
386-
# a debugging fixture, see issue 223.
383+
# application-specific: we never want to marshal None (even
384+
# though we could by saying allow_none=True in dumps within
385+
# xmlrpc_marshall), this is meant as a debugging fixture, see:
386+
# http://www.plope.com/software/collector/223
387387
assert value is not None, (
388388
'return value from method %r with params %r is None' %
389389
(method, params)

0 commit comments

Comments
 (0)