forcing all tqdm's to ascii in order to work properly on Chinese windows

This commit is contained in:
iperov 2019-01-24 21:32:07 +04:00
parent 1e7a0836f7
commit 72646becd1
5 changed files with 24 additions and 25 deletions

View file

@ -134,7 +134,7 @@ class SubprocessorBase(object):
print ( self.get_no_process_started_message() )
return None
self.progress_bar = tqdm( total=self.onHostGetProgressBarLen(), desc=self.onHostGetProgressBarDesc() )
self.progress_bar = tqdm( total=self.onHostGetProgressBarLen(), desc=self.onHostGetProgressBarDesc(), ascii=True )
self.onHostClientsInitialized()
try: