correct ascii fallback

This commit is contained in:
Casper da Costa-Luis 2020-07-09 13:37:29 +01:00
parent 9c23a5feef
commit c92b6dbd0b
No known key found for this signature in database
GPG key ID: D88C553DBD362CDE

View file

@ -272,7 +272,7 @@ class Scene(object):
times,
total=n_iterations,
leave=self.leave_progress_bars,
ascii=False if platform.system() != 'Windows' else True
ascii=True if platform.system() == 'Windows' else None
)
return time_progression