Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/wsshd
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ if __name__ == '__main__':

agent = 'wsshd/{0}'.format(wssh.__version__)

print '{0} running on {1}:{2}'.format(agent, args.host, args.port)
print('{0} running on {1}:{2}'.format(agent, args.host, args.port))

app.debug = True
http_server = WSGIServer((args.host, args.port), app,
Expand Down
2 changes: 1 addition & 1 deletion wssh/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from server import WSSHBridge
from wssh.server import WSSHBridge

__version__ = '0.1.0'
2 changes: 1 addition & 1 deletion wssh/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
except ImportError:
import json

from StringIO import StringIO
from io import StringIO


class WSSHBridge(object):
Expand Down