mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 06:40:33 -04:00
and discrete or sampled data such as particles. Focused on driving physically-meaningful inquiry, yt has been applied in domains such as astrophysics, seismology, nuclear engineering, molecular dynamics, and oceanography. WWW: http://yt-project.org PR: 214565 Submitted by: yuri@rawbw.com
10 lines
514 B
Python
10 lines
514 B
Python
--- yt/extern/tqdm/_utils.py.orig 2016-10-25 16:08:30 UTC
|
|
+++ yt/extern/tqdm/_utils.py
|
|
@@ -40,7 +40,7 @@ def _environ_cols_wrapper(): # pragma:
|
|
_environ_cols = _environ_cols_windows
|
|
if _environ_cols is None:
|
|
_environ_cols = _environ_cols_tput
|
|
- if current_os in ['Linux', 'Darwin'] or current_os.startswith('CYGWIN'):
|
|
+ if current_os in ['FreeBSD', 'Linux', 'Darwin'] or current_os.startswith('CYGWIN'):
|
|
_environ_cols = _environ_cols_linux
|
|
return _environ_cols
|