summaryrefslogtreecommitdiff
path: root/paramiko/kex_gex.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/kex_gex.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/kex_gex.py')
-rw-r--r--paramiko/kex_gex.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/paramiko/kex_gex.py b/paramiko/kex_gex.py
index e0974c1f..994d76cb 100644
--- a/paramiko/kex_gex.py
+++ b/paramiko/kex_gex.py
@@ -1,5 +1,3 @@
-#!/usr/bin/python
-
# Copyright (C) 2003-2005 Robey Pointer <robey@lag.net>
#
# This file is part of paramiko.
@@ -27,10 +25,10 @@ client side, and a B{lot} more on the server side.
from Crypto.Hash import SHA
from Crypto.Util import number
-from common import *
-from message import Message
-import util
-from ssh_exception import SSHException
+from paramiko.common import *
+from paramiko import util
+from paramiko.message import Message
+from paramiko.ssh_exception import SSHException
_MSG_KEXDH_GEX_GROUP, _MSG_KEXDH_GEX_INIT, _MSG_KEXDH_GEX_REPLY, _MSG_KEXDH_GEX_REQUEST = range(31, 35)