Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Unified Diff: tools/testing/frogpad/frogpad.py

Issue 9657022: fix stderr format (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/testing/frogpad/frogpad.py
diff --git a/tools/testing/frogpad/frogpad.py b/tools/testing/frogpad/frogpad.py
index c546f4de07629b42a910602c976f03c86709f142..943c7801c3ba5100152fcc8a31937df17dd6629a 100755
--- a/tools/testing/frogpad/frogpad.py
+++ b/tools/testing/frogpad/frogpad.py
@@ -345,7 +345,7 @@ def run_command(args):
close_fds=True)
(stdout, stderr) = child.communicate()
for line in stderr.splitlines():
- logging.info(logging.INFO, '%s: %s', args[0], line)
+ logging.info(logging.INFO, '%s: %s' % (args[0], line))
exit_code = child.wait()
if exit_code:
msg = "FAILURE (exit_code=%d): '%s'" % (exit_code, command)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698