Commit d9adfcbc authored by Vincent Pelletier's avatar Vincent Pelletier

Get rid of intermediate variable.

parent 10e6c2e1
...@@ -364,8 +364,8 @@ class Application(object): ...@@ -364,8 +364,8 @@ class Application(object):
connector=self.connector_handler()) connector=self.connector_handler())
# and another for the future incoming connections # and another for the future incoming connections
handler = identification.IdentificationHandler(self) self.listening_conn.setHandler(
self.listening_conn.setHandler(handler) identification.IdentificationHandler(self))
while True: while True:
self.em.poll(1) self.em.poll(1)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment