fix dumb typo in tahoe run

This commit is contained in:
robk-tahoe 2008-01-10 20:14:00 -07:00
parent 0b097ac485
commit 198f593cad

View File

@ -174,7 +174,7 @@ def run(config, stdout, stderr):
# run the node itself
c = client.Client(basedir)
reactor.callLater(c.startService) # after reactor startup
reactor.callLater(0, c.startService) # after reactor startup
reactor.run()
return 0