remove unneded piping

This commit is contained in:
chrys 2017-03-10 18:32:37 +01:00
parent 8f72148428
commit f60efbc4f4

View File

@ -150,7 +150,7 @@ class driver():
try:
s = time.time()
self.proc = Popen(popenSpeechCommand , stdout=PIPE, stderr=PIPE, shell=True)
self.proc = Popen(popenSpeechCommand, shell=True)
self.proc.wait()
print(popenSpeechCommand)
print('run',time.time() -s)