diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2014-11-20 10:07:01 -0200 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2014-11-20 14:44:46 -0200 |
commit | 907270df79d1d54ad8818ba2f21d214e57cf00bb (patch) | |
tree | 19048e0038aa38dd038bc290152f0984c016d95c | |
parent | 7f742ec88d8abd350776221d25e0953e7f9796c4 (diff) |
Removed useless print from the code
-rw-r--r-- | service/pixelated/config/app_factory.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/service/pixelated/config/app_factory.py b/service/pixelated/config/app_factory.py index 93681fe3..81868849 100644 --- a/service/pixelated/config/app_factory.py +++ b/service/pixelated/config/app_factory.py @@ -132,7 +132,6 @@ def init_app(app): def create_app(app, bind_address, bind_port): - print type(reactor.listenTCP) reactor.listenTCP(bind_port, Site(app.resource()), interface=bind_address) reactor.callWhenRunning(lambda: init_app(app)) reactor.run() |