diff options
author | Robey Pointer <robey@lag.net> | 2003-11-10 08:49:50 +0000 |
---|---|---|
committer | Robey Pointer <robey@lag.net> | 2003-11-10 08:49:50 +0000 |
commit | 11815d4d837314a51ebf919c1a61cb0f68a3c02b (patch) | |
tree | a87cdf5a7f3658375d0d6be642a5d8ddf46bbc36 /message.py | |
parent | 2ff9f467517e1ff8916e1adbdaf342d0468b4ebb (diff) |
[project @ Arch-1:robey@lag.net--2003-public%secsh--dev--1.0--patch-9]
rename secsh -> paramiko
also, rename SecshException back to SSHException. sigh. :)
Diffstat (limited to 'message.py')
-rw-r--r-- | message.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,11 +1,11 @@ -# implementation of a secsh "message" +# implementation of an SSH2 "message" import string, types, struct from util import inflate_long, deflate_long class Message(object): - "represents the encoding of a secsh message" + "represents the encoding of an SSH2 message" def __init__(self, content=''): self.packet = content |