Chromium Code Reviews| Index: git_common.py |
| diff --git a/git_common.py b/git_common.py |
| index 949ba4695e0437f1ef6b9b078a9fca70f27377f5..bef628e407b16074183928040a33a0bf8bd85bcc 100644 |
| --- a/git_common.py |
| +++ b/git_common.py |
| @@ -22,6 +22,7 @@ import functools |
| import logging |
| import os |
| import re |
| +import setup_color |
| import shutil |
| import signal |
| import sys |
| @@ -281,7 +282,7 @@ def once(function): |
| ## Git functions |
| -def blame(filename, revision=None, porcelain=False, *args): |
| +def blame(filename, revision=None, porcelain=False, *_args): |
|
brucedawson
2016/04/02 20:42:50
What's this change for?
iannucci
2016/04/02 23:45:34
pylint was annoying me (this argument is unused.)
|
| command = ['blame'] |
| if porcelain: |
| command.append('-p') |
| @@ -576,7 +577,7 @@ def less(): # pragma: no cover |
| Automatically checks if sys.stdout is a non-TTY stream. If so, it avoids |
| running less and just yields sys.stdout. |
| """ |
| - if not sys.stdout.isatty(): |
| + if not setup_color.IS_TTY: |
| yield sys.stdout |
| return |