We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0de0cd2 + ba6b9c9 commit f2f2393Copy full SHA for f2f2393
flask_uwsgi_websocket/websocket.py
@@ -87,7 +87,7 @@ def run(self, app=None, debug=False, host='localhost', port=5000, **kwargs):
87
uwsgi_args = ' '.join(['--{0} {1}'.format(k,v) for k,v in kwargs.items()])
88
args = 'uwsgi --http {0}:{1} --http-websockets {2} --wsgi {3}'.format(host, port, uwsgi_args, app)
89
90
- print args
+ print(args)
91
92
# set enviromental variable to trigger adding debug middleware
93
if self.app.debug or debug:
0 commit comments