Skip to content

Commit

Permalink
Fix typos so comment is readable
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaberez committed Mar 19, 2016
1 parent d5cbaaa commit a037b43
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions supervisor/xmlrpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a037b43

Please sign in to comment.