Fix casing/underscore convention in method name, split polling logic away from runner.

This commit is contained in:
Michael DeHaan 2012-05-25 19:18:02 -04:00
commit db1d5b154a
4 changed files with 104 additions and 7 deletions

View file

@ -101,7 +101,7 @@ class Cli(object):
if options.seconds:
print "background launch...\n\n"
results, poller = runner.runAsync(options.seconds)
results, poller = runner.run_async(options.seconds)
results = self.poll_while_needed(poller, options)
else:
results = runner.run()