From 45d61d070fc67449407c08d9836b185b966657ef Mon Sep 17 00:00:00 2001 From: David Pursell Date: Mon, 12 Oct 2015 15:54:58 -0700 Subject: [PATCH] adb: fix docstring for shell functions. Change-Id: Iaae8605b18583c38e517f865083012204d236832 --- python-packages/adb/device.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python-packages/adb/device.py b/python-packages/adb/device.py index 392fafea8..259a8c5ae 100644 --- a/python-packages/adb/device.py +++ b/python-packages/adb/device.py @@ -270,7 +270,7 @@ class AndroidDevice(object): """Calls `adb shell` Args: - cmd: string shell command to execute. + cmd: command to execute as a list of strings. Returns: A (stdout, stderr) tuple. Stderr may be combined into stdout @@ -288,7 +288,7 @@ class AndroidDevice(object): """Calls `adb shell` Args: - cmd: string shell command to execute. + cmd: command to execute as a list of strings. Returns: An (exit_code, stdout, stderr) tuple. Stderr may be combined