summaryrefslogtreecommitdiff
path: root/utils.py
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-08 16:04:59 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-04-08 16:04:59 +0000
commit64115c50813684e317ea8d9241357b448aed14c1 (patch)
tree6e700966fbde382cd6f62cb41d45e4fb7190d32a /utils.py
parent184ff1922b8f712dc949e893b4b42dcf41834902 (diff)
parent0dbab728fbfcf658bed0ae99eb473b954941e3b4 (diff)
downloadvndk-64115c50813684e317ea8d9241357b448aed14c1.tar.gz
Change-Id: Iaf5e49922f5498e0462458abaada5d0f104b6c30
Diffstat (limited to 'utils.py')
-rw-r--r--utils.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/utils.py b/utils.py
index 8bf00f3..c6e13c2 100644
--- a/utils.py
+++ b/utils.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python3
+#!/usr/bin/env python
#
# Copyright (C) 2020 The Android Open Source Project
#
@@ -32,10 +32,7 @@ class AndroidDevice(object):
def AdbPull(self, src, dst):
cmd = ["adb", "-s", self._serial_number, "pull", src, dst]
- env = os.environ.copy()
- if "ADB_COMPRESSION" not in env:
- env["ADB_COMPRESSION"] = "0"
- subprocess.check_call(cmd, shell=False, env=env, stdin=subprocess.PIPE,
+ subprocess.check_call(cmd, shell=False, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=subprocess.PIPE)
def Execute(self, *args):