am 7f2e05e9: Merge "Fix incorrect exception handling in perfboot.py"
* commit '7f2e05e9a3f44528d9fa624da9386b01ccaa54a6': Fix incorrect exception handling in perfboot.py
This commit is contained in:
commit
9e2ed7b080
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ def init_perf(device, output, record_list, tags):
|
||||||
output_results(output, record_list, tags)
|
output_results(output, record_list, tags)
|
||||||
if original_dropbox_max_files is not None:
|
if original_dropbox_max_files is not None:
|
||||||
restore_dropbox(device, original_dropbox_max_files)
|
restore_dropbox(device, original_dropbox_max_files)
|
||||||
except subprocess.CalledProcessError, RuntimeError:
|
except (subprocess.CalledProcessError, RuntimeError):
|
||||||
pass
|
pass
|
||||||
atexit.register(cleanup)
|
atexit.register(cleanup)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue