Updated requirements.txt

pull/30/head v0.4.6
Sheng 2018-09-13 18:44:13 +08:00
parent 0f11f2acba
commit 1a7c395c75
3 changed files with 6 additions and 6 deletions

View File

@ -1,2 +1,2 @@
paramiko==2.4.1 paramiko==2.4.1
tornado==5.0.2 tornado==5.1

View File

@ -161,10 +161,10 @@ def run_ssh_server(port=2200, running=True):
while data: while data:
s = chan.send(data) s = chan.send(data)
data = data[s:] data = data[s:]
else:
chan.close() chan.close()
t.close() t.close()
client.close() client.close()
try: try:
sock.close() sock.close()

View File

@ -1,2 +1,2 @@
__version_info__ = (0, 4, 5) __version_info__ = (0, 4, 6)
__version__ = '.'.join(map(str, __version_info__)) __version__ = '.'.join(map(str, __version_info__))