summaryrefslogtreecommitdiff
path: root/paramiko/kex_group1.py
diff options
context:
space:
mode:
authorRobey Pointer <robey@lag.net>2003-12-27 02:03:44 +0000
committerRobey Pointer <robey@lag.net>2003-12-27 02:03:44 +0000
commiteb4c279ec4392d23c5dd7271458299fb3196f8d4 (patch)
tree1affcf54d85bfecc8bcb649b4d7058804df490d3 /paramiko/kex_group1.py
parent877cd974b8182d26fa76d566072917ea67b64e67 (diff)
downloadparamiko-eb4c279ec4392d23c5dd7271458299fb3196f8d4.tar.gz
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-15]
fix up new paramiko/ folder. moved SSHException to a new file (ssh_exception.py) and turned paramiko.py into an __init__.py file. i'm still not entirely sure how this normally works, so i may have done something wrong, but it's supposed to work the same as before.
Diffstat (limited to 'paramiko/kex_group1.py')
-rw-r--r--paramiko/kex_group1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/paramiko/kex_group1.py b/paramiko/kex_group1.py
index 00988b2a..a29c79d0 100644
--- a/paramiko/kex_group1.py
+++ b/paramiko/kex_group1.py
@@ -5,7 +5,7 @@
# "g" generator.
from message import Message, inflate_long
-from paramiko import SSHException
+from ssh_exception import SSHException
from transport import MSG_NEWKEYS
from Crypto.Hash import SHA
from logging import DEBUG, INFO, WARNING, ERROR, CRITICAL