Add default value to wait parameter

Adding the wait param without a default broke the api for things calling
it the old way.

Change-Id: I75bbec19f06a0f85bc9cb1fbe4d4c6560dadba49
This commit is contained in:
Monty Taylor 2016-03-24 12:12:53 -05:00
parent b5e3cd3307
commit bd8be72f4e
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ class Task(object):
self._traceback = tb
self._finished.set()
def wait(self, raw):
def wait(self, raw=False):
self._finished.wait()
if self._exception: