mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-06 21:12:07 -07:00
forcing all tqdm's to ascii in order to work properly on Chinese windows
This commit is contained in:
parent
1e7a0836f7
commit
72646becd1
5 changed files with 24 additions and 25 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue