summaryrefslogtreecommitdiff
path: root/paramiko/sftp.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2005-10-13 18:52:59 +0000
committerRobey Pointer <robey@lag.net>2005-10-13 18:52:59 +0000
commit6eab0b3b4df096aa6b9421c8fe342078d182c523 (patch)
treea971bd201673ccfaa4f831308945d9dc670a1c40 /paramiko/sftp.py
parent8bb5e65499661bc1e0556ccfe56c4317d70317cd (diff)
downloadparamiko-6eab0b3b4df096aa6b9421c8fe342078d182c523.tar.gz
[project @ Arch-1:robey@lag.net--2005-master-shake%paramiko--dev--1--patch-65]
remove unnecessary shebangs, fix import lines to be explicit about imports from within paramiko, and a bit of whitespace cleanup
Diffstat (limited to 'paramiko/sftp.py')
-rw-r--r--paramiko/sftp.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/paramiko/sftp.py b/paramiko/sftp.py
index 78c204b7..58d71030 100644
--- a/paramiko/sftp.py
+++ b/paramiko/sftp.py
@@ -16,11 +16,14 @@
# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
# 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
-import struct, socket
-from common import *
-import util
-from channel import Channel
-from message import Message
+import socket
+import struct
+
+from paramiko.common import *
+from paramiko import util
+from paramiko.channel import Channel
+from paramiko.message import Message
+
CMD_INIT, CMD_VERSION, CMD_OPEN, CMD_CLOSE, CMD_READ, CMD_WRITE, CMD_LSTAT, CMD_FSTAT, \
CMD_SETSTAT, CMD_FSETSTAT, CMD_OPENDIR, CMD_READDIR, CMD_REMOVE, CMD_MKDIR, \