From f9d8f8d9b01a1bc8c93e19db24da4034937058f3 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Ruel Date: Wed, 17 Feb 2016 19:34:54 -0500 Subject: [PATCH] Revert doc change to AdbCommands.Push. https://github.com/google/python-adb/pull/8 wasn't merged yet. --- adb/adb_commands.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/adb/adb_commands.py b/adb/adb_commands.py index 0996552..95d9880 100644 --- a/adb/adb_commands.py +++ b/adb/adb_commands.py @@ -133,11 +133,10 @@ def Install(self, apk_path, destination_dir=None, timeout_ms=None): timeout_ms=timeout_ms) def Push(self, source_file, device_filename, mtime='0', timeout_ms=None): - """Push a file or directory to the device. + """Push a file to the device. Arguments: - source_file: Either a filename, a directory or file-like object to push to - the device. + source_file: Either a filename or file-like object to push to the device. device_filename: The filename on the device to write to. mtime: Optional, modification time to set on the file. timeout_ms: Expected timeout for any part of the push.