mirror of
https://github.com/verigak/progress.git
synced 2025-12-08 19:33:24 +00:00
Add help message to check_tty AttributeError
This commit is contained in:
@@ -109,7 +109,10 @@ class Infinite(object):
|
|||||||
print(SHOW_CURSOR, end='', file=self.file)
|
print(SHOW_CURSOR, end='', file=self.file)
|
||||||
|
|
||||||
def is_tty(self):
|
def is_tty(self):
|
||||||
return self.file.isatty() if self.check_tty else True
|
try:
|
||||||
|
return self.file.isatty() if self.check_tty else True
|
||||||
|
except AttributeError:
|
||||||
|
raise AttributeError('\'{}\' object has no attribute \'isatty\'. Try setting parameter check_tty=False.'.format(self))
|
||||||
|
|
||||||
def next(self, n=1):
|
def next(self, n=1):
|
||||||
now = monotonic()
|
now = monotonic()
|
||||||
|
|||||||
Reference in New Issue
Block a user