Fixed up incorrect push
Somehow I pushed the wrong patch of issue 6508007. This should patch
patch set 5 correctly.
TBR=sjg (build break)
TEST=chromite/buildbot/cbuildbot --buildnumber=3992 --buildroot=/b/cbuild --revisionfile=chromite/buildbot/revisions.pfq x86-generic-pre-flight-queue
Check it gets past the init phase.
Change-Id: I3f3f83fec36271a36aa1295a129782861196c0c5
BUG=
Review URL: http://codereview.chromium.org/6673030
diff --git a/lib/cros_build_lib.py b/lib/cros_build_lib.py
index b388cda..8728fe3 100644
--- a/lib/cros_build_lib.py
+++ b/lib/cros_build_lib.py
@@ -154,14 +154,14 @@
# 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):