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

* commit 'fb35b7c463321eab207f8c445efb9ff0e303f6ed':
  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)