webssh

Web based ssh client https://github.com/huashengdun/webssh webssh.huashengdun.org/
git clone http://git.hanabi.in/repos/webssh.git
Log | Files | Refs | README | LICENSE

commit 1a7c395c758b5ca0b0586dd5c4aece6b5681f4e1
parent 0f11f2acba4fb480b09e1bddf964568724c9bd58
Author: Sheng <webmaster0115@gmail.com>
Date:   Thu, 13 Sep 2018 18:44:13 +0800

Updated requirements.txt

Diffstat:
Mrequirements.txt | 2+-
Mtests/sshserver.py | 8++++----
Mwebssh/_version.py | 2+-
3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/requirements.txt b/requirements.txt @@ -1,2 +1,2 @@ paramiko==2.4.1 -tornado==5.0.2 +tornado==5.1 diff --git a/tests/sshserver.py b/tests/sshserver.py @@ -161,10 +161,10 @@ def run_ssh_server(port=2200, running=True): while data: s = chan.send(data) data = data[s:] - - chan.close() - t.close() - client.close() + else: + chan.close() + t.close() + client.close() try: sock.close() diff --git a/webssh/_version.py b/webssh/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 4, 5) +__version_info__ = (0, 4, 6) __version__ = '.'.join(map(str, __version_info__))