Skip to content

Commit

Permalink
Updated requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
huashengdun committed Sep 13, 2018
1 parent 0f11f2a commit 1a7c395
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
paramiko==2.4.1
tornado==5.0.2
tornado==5.1
8 changes: 4 additions & 4 deletions tests/sshserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion webssh/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0, 4, 5)
__version_info__ = (0, 4, 6)
__version__ = '.'.join(map(str, __version_info__))

0 comments on commit 1a7c395

Please sign in to comment.