Only pass args

master
Bob Mottram 2019-09-03 12:02:01 +01:00
parent ad5fb99ea7
commit d325501a31
1 changed files with 1 additions and 2 deletions

View File

@ -44,5 +44,4 @@ class threadWithTrace(threading.Thread):
def clone(self):
return threadWithTrace(target=self, \
args=(self._args, self._keywords),daemon=True)
#return threadWithTrace(self, *self._args, **self._keywords)
args=(self._args),daemon=True)