Skip to content

Commit

Permalink
Merge branch 'release/3.50.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
wolph committed Mar 20, 2020
2 parents 5b148c8 + 7db715d commit 420ad06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion progressbar/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
long running operations.
'''.strip().split())
__email__ = '[email protected]'
__version__ = '3.50.0'
__version__ = '3.50.1'
__license__ = 'BSD'
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
__url__ = 'https://github.com/WoLpH/python-progressbar'
2 changes: 1 addition & 1 deletion progressbar/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def is_ansi_terminal(fd, is_terminal=None): # pragma: no cover
elif 'ANSICON' in os.environ:
is_terminal = True
else:
is_terminal = False
is_terminal = None
except Exception:
is_terminal = False

Expand Down

0 comments on commit 420ad06

Please sign in to comment.