Skip to content

Commit

Permalink
Fix another E731 error
Browse files Browse the repository at this point in the history
  • Loading branch information
k4nar committed Feb 10, 2015
1 parent a3a85e3 commit 2a38dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion circus/arbiter.py
Expand Up @@ -536,7 +536,7 @@ def start(self, cb=None):
else:
# start_watchers will be called just after the start_io_loop()
if not cb:
cb = lambda x: None
def cb(x): pass
self.loop.add_future(self.start_watchers(), cb)
logger.info('Arbiter now waiting for commands')
self._running = True
Expand Down

0 comments on commit 2a38dad

Please sign in to comment.