| Index: lib/cros_build_lib.py
|
| diff --git a/lib/cros_build_lib.py b/lib/cros_build_lib.py
|
| index b388cda60bde4b8dbef5a9f020b7b842fc66414b..8728fe3fb734b99ba3738c5520935e42200a92c2 100644
|
| --- a/lib/cros_build_lib.py
|
| +++ b/lib/cros_build_lib.py
|
| @@ -154,14 +154,14 @@ def Warning(message):
|
| # It is left here for the moment so people are aware what happened.
|
| # The reason is that this is not aware of the terminal output restrictions such
|
| # as verbose, quiet and subprocess output. You should not be calling this.
|
| -# def Info(message):
|
| -# """Emits a blue informational message and continues execution.
|
| -#
|
| -# Args:
|
| -# message: The message to be emitted.
|
| -# """
|
| -# print >> sys.stderr, (
|
| -# Color(_STDOUT_IS_TTY).Color(Color.BLUE, '\nINFO: ' + message))
|
| +def Info(message):
|
| + """Emits a blue informational message and continues execution.
|
| +
|
| + Args:
|
| + message: The message to be emitted.
|
| + """
|
| + print >> sys.stderr, (
|
| + Color(_STDOUT_IS_TTY).Color(Color.BLUE, '\nINFO: ' + message))
|
|
|
|
|
| def ListFiles(base_dir):
|
|
|