Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9e2ed7b0 authored by Yasuhiro Matsuda's avatar Yasuhiro Matsuda Committed by Android Git Automerger
Browse files

am 7f2e05e9: Merge "Fix incorrect exception handling in perfboot.py"

* commit '7f2e05e9':
  Fix incorrect exception handling in perfboot.py
parents ee640552 7f2e05e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ def init_perf(device, output, record_list, tags):
                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)