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

Commit 7f2e05e9 authored by Yasuhiro Matsuda's avatar Yasuhiro Matsuda Committed by Gerrit Code Review
Browse files

Merge "Fix incorrect exception handling in perfboot.py"

parents 1ada513f f3d0d42f
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)