diff options
Diffstat (limited to 'progress.py')
-rw-r--r-- | progress.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/progress.py b/progress.py index f9ac53a1..526ce6c1 100644 --- a/progress.py +++ b/progress.py | |||
@@ -15,7 +15,7 @@ | |||
15 | import os | 15 | import os |
16 | import sys | 16 | import sys |
17 | from time import time | 17 | from time import time |
18 | from repo_trace import IsTrace | 18 | from repo_trace import IsTraceToStderr |
19 | 19 | ||
20 | _NOT_TTY = not os.isatty(2) | 20 | _NOT_TTY = not os.isatty(2) |
21 | 21 | ||
@@ -80,7 +80,7 @@ class Progress(object): | |||
80 | def update(self, inc=1, msg=''): | 80 | def update(self, inc=1, msg=''): |
81 | self._done += inc | 81 | self._done += inc |
82 | 82 | ||
83 | if _NOT_TTY or IsTrace(): | 83 | if _NOT_TTY or IsTraceToStderr(): |
84 | return | 84 | return |
85 | 85 | ||
86 | if not self._show: | 86 | if not self._show: |
@@ -113,7 +113,7 @@ class Progress(object): | |||
113 | sys.stderr.flush() | 113 | sys.stderr.flush() |
114 | 114 | ||
115 | def end(self): | 115 | def end(self): |
116 | if _NOT_TTY or IsTrace() or not self._show: | 116 | if _NOT_TTY or IsTraceToStderr() or not self._show: |
117 | return | 117 | return |
118 | 118 | ||
119 | duration = duration_str(time() - self._start) | 119 | duration = duration_str(time() - self._start) |