Commit cb08ffaf authored by Vincent Pelletier's avatar Vincent Pelletier

Move import to top-level.


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@314 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 9b259cdb
...@@ -21,6 +21,7 @@ from Queue import Empty, Queue ...@@ -21,6 +21,7 @@ from Queue import Empty, Queue
from neo.protocol import PING, Packet, CLIENT_NODE_TYPE, FINISH_TRANSACTION from neo.protocol import PING, Packet, CLIENT_NODE_TYPE, FINISH_TRANSACTION
from neo.connection import MTClientConnection from neo.connection import MTClientConnection
from neo.node import MasterNode from neo.node import MasterNode
from neo.client.handler import ClientEventHandler
import time import time
import logging import logging
...@@ -72,7 +73,6 @@ class Dispatcher(Thread): ...@@ -72,7 +73,6 @@ class Dispatcher(Thread):
acquired = self.connecting_to_master_node.acquire(0) acquired = self.connecting_to_master_node.acquire(0)
if acquired: if acquired:
try: try:
from neo.client.handler import ClientEventHandler
if app.pt is not None: if app.pt is not None:
app.pt.clear() app.pt.clear()
master_index = 0 master_index = 0
......
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