summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-07-06 23:18:13 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-07-06 23:18:13 +0000
commita64d64e6a4d6f523474652eb08f104165792a59a (patch)
tree7cd7dd46a10650df2cde370f3b2ae8a988930d93
parentf8a6af34caea9d407d87cb5bcf0fd5a2913a1eb2 (diff)
parentf4fa04e7680e8614362f0bf0ae80e1f0e01c0b57 (diff)
downloadplatform_tools_test_connectivity-a64d64e6a4d6f523474652eb08f104165792a59a.tar.gz
platform_tools_test_connectivity-a64d64e6a4d6f523474652eb08f104165792a59a.tar.bz2
platform_tools_test_connectivity-a64d64e6a4d6f523474652eb08f104165792a59a.zip
Snap for 5709920 from f4fa04e7680e8614362f0bf0ae80e1f0e01c0b57 to qt-aml-release
Change-Id: I13f9acf369e61b5e542c54ca05326ea22ad087be
-rw-r--r--acts/framework/acts/controllers/adb.py1
-rwxr-xr-xacts/framework/acts/controllers/fastboot.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/acts/framework/acts/controllers/adb.py b/acts/framework/acts/controllers/adb.py
index 5c643630aa..cf0e2c64ea 100644
--- a/acts/framework/acts/controllers/adb.py
+++ b/acts/framework/acts/controllers/adb.py
@@ -55,6 +55,7 @@ class AdbError(error.ActsError):
"""Raised when there is an error in adb operations."""
def __init__(self, cmd, stdout, stderr, ret_code):
+ super().__init__()
self.cmd = cmd
self.stdout = stdout
self.stderr = stderr
diff --git a/acts/framework/acts/controllers/fastboot.py b/acts/framework/acts/controllers/fastboot.py
index 7252e4a5e4..6f472550a5 100755
--- a/acts/framework/acts/controllers/fastboot.py
+++ b/acts/framework/acts/controllers/fastboot.py
@@ -24,6 +24,7 @@ class FastbootError(error.ActsError):
"""Raised when there is an error in fastboot operations."""
def __init__(self, cmd, stdout, stderr, ret_code):
+ super().__init__()
self.cmd = cmd
self.stdout = stdout
self.stderr = stderr