We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f944a31 + f699668 commit 24b899eCopy full SHA for 24b899e
Interlace/lib/core/__version__.py
@@ -1,2 +1 @@
1
-__version__ = '1.5.0'
2
-
+__version__ = '1.5.1'
Interlace/lib/threader.py
@@ -19,13 +19,14 @@ def __call__(self):
19
if self.tqdm:
20
self.tqdm.update(1)
21
# run task
22
- self.run_task(task)
+ self.run_task(task, self.tqdm)
23
except IndexError:
24
break
25
26
@staticmethod
27
- def run_task(task):
28
- subprocess.call(task, shell=True)
+ def run_task(task, t):
+ s = subprocess.Popen(task, shell=True, stdout=subprocess.PIPE)
29
+ t.write(s.stdout.readline().decode("utf-8"))
30
31
32
class Pool(object):
0 commit comments