From cf9d364063dbf8e72f327177aaa99e8af32865f4 Mon Sep 17 00:00:00 2001 From: "phoglund@webrtc.org" Date: Tue, 7 Jan 2014 17:59:30 +0000 Subject: [PATCH] Now printing less output from compare_videos.py. Alternative solution to the one in https://codereview.chromium.org/114003006/. I considered adding a verbose flag, but it needs to be passed through like 5 functions, so I didn't think it was worth it for a function of such speculative use. BUG=chromium:327990 R=kjellander@webrtc.org Review URL: https://webrtc-codereview.appspot.com/6679004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5347 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/tools/barcode_tools/barcode_decoder.py | 1 - 1 file changed, 1 deletion(-) diff --git a/webrtc/tools/barcode_tools/barcode_decoder.py b/webrtc/tools/barcode_tools/barcode_decoder.py index 7a366686a4..b7b7ddd4a6 100755 --- a/webrtc/tools/barcode_tools/barcode_decoder.py +++ b/webrtc/tools/barcode_tools/barcode_decoder.py @@ -103,7 +103,6 @@ def _decode_barcode_in_file(file_name, command_line_decoder): try: out = helper_functions.run_shell_command( command, fail_msg='Error during decoding of %s' % file_name) - print 'Image %s : decoded barcode: %s' % (file_name, out) text_file = open('%s.txt' % file_name[:-4], 'w') text_file.write(out) text_file.close()