Don't emit any output while running.

This commit is contained in:
Roberto Agostino Vitillo 2014-03-06 17:35:58 +00:00
Родитель a16db4bae7
Коммит 86746b41f1
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -39,7 +39,7 @@ class BLA(Wrapper):
raise Exception("Intel Battery Life Analyzer not found")
def start(self):
self._process = Popen('{} c sw:{} -o {}'.format(self._tool, self._args.duration, self._directory), shell=True)
self._process = Popen('{} c sw:{} -o {} > NUL 2>&1'.format(self._tool, self._args.duration, self._directory), shell=True)
def join(self):
self._process.wait()