author | Mark Hammond <mhammond@skippinet.com.au> |
Mon, 30 Mar 2009 11:07:49 +1100 | |
branch | twisty |
changeset 138 | 047a61606eff86fda2044c304e1643d785ebfaee |
parent 137 | f28d2611b94106d3e90179a813d5aff0659a6705 |
child 139 | bdcda2baf4b8535ca600c9b082901f399d51e966 |
push id | 1 |
push user | root |
push date | Wed, 08 Apr 2009 01:46:05 +0000 |
--- a/server/python/run-raindrop.py +++ b/server/python/run-raindrop.py @@ -194,17 +194,16 @@ def main(): # Now process the args specified. for arg in args: try: func = all_args[arg] except KeyError: parser.error("Invalid command: " + arg) asynch = getattr(func, 'asynch', False) - print "GOT", func, asynch if asynch: asynch_tasks.append(func) else: d.addCallback(func, parser, options) # and some final deferreds to control the process itself. def done(whateva): if not asynch_tasks: