commit | 6343dfa989d8915cda71d3bfb6196c359f566639 | [log] [tgz] |
---|---|---|
author | Yasuhiro Matsuda <mazda@google.com> | Thu Aug 06 01:48:34 2015 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Aug 06 01:48:34 2015 +0000 |
tree | 4288f9853354ba0325279a44ec52b543a2301ec8 | |
parent | 24baa3485b1bf917affe8919a23291186f63a5dd [diff] | |
parent | 19d498627caa5c13192c8ec6467ede9c20bd379e [diff] |
Merge "Fix incorrect exception handling in perfboot.py"
diff --git a/init/perfboot.py b/init/perfboot.py index 3d4940c..583d640 100755 --- a/init/perfboot.py +++ b/init/perfboot.py
@@ -203,7 +203,7 @@ output_results(output, record_list, tags) if original_dropbox_max_files is not None: restore_dropbox(device, original_dropbox_max_files) - except subprocess.CalledProcessError, RuntimeError: + except (subprocess.CalledProcessError, RuntimeError): pass atexit.register(cleanup)