Skip to content

Commit

Permalink
Expose isatty function since we are hijacking sys.stderr (#167)
Browse files Browse the repository at this point in the history
* Expose isatty function since we are hijacking sys.stderr

* Version bump
  • Loading branch information
ganesh-krishnan authored May 11, 2020
1 parent db853e0 commit cfca2b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
__copyright__ = 'Copyright © 2018, Instacart'
__credits__ = ['Montana Low', 'Jeremy Stanley', 'Emmanuel Turlay', 'Shrikar Archak', 'Ganesh Krishnan']
__license__ = 'MIT'
__version__ = '0.8.3'
__version__ = '0.8.4'
__maintainer__ = 'Montana Low'
__email__ = '[email protected]'
__status__ = 'Development Status :: 4 - Beta'
Expand Down
1 change: 1 addition & 0 deletions lore/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ def __init__(self, stream, level=logging.INFO):
self.errors = stream.errors
self.encoding = stream.encoding
self.level = level
self.isatty = stream.isatty

def write(self, value):
self.stream.write(value)
Expand Down

0 comments on commit cfca2b4

Please sign in to comment.