Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordschaefer2011-04-01 15:42:18 +0000
committerdschaefer2011-04-01 15:42:18 +0000
commit0612045806cf1737725e4161d714a7dbe407a097 (patch)
tree660fc6460fca3fb54b9e078b9ca7adb2a3bfcf19 /python/src
parent9646077d44a16a5b48aae399b79d4d580beb6f43 (diff)
downloadorg.eclipse.tcf-0612045806cf1737725e4161d714a7dbe407a097.tar.gz
org.eclipse.tcf-0612045806cf1737725e4161d714a7dbe407a097.tar.xz
org.eclipse.tcf-0612045806cf1737725e4161d714a7dbe407a097.zip
Fix pydev compile error I was getting with locator being imported from wrong package.
Diffstat (limited to 'python/src')
-rw-r--r--python/src/tcf/services/remote/LocatorProxy.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/src/tcf/services/remote/LocatorProxy.py b/python/src/tcf/services/remote/LocatorProxy.py
index f95303bb5..faf5ee585 100644
--- a/python/src/tcf/services/remote/LocatorProxy.py
+++ b/python/src/tcf/services/remote/LocatorProxy.py
@@ -10,7 +10,8 @@
# *******************************************************************************
import exceptions
-from tcf import protocol, locator, peer, channel
+from tcf import protocol, peer, channel
+from tcf.services import locator
from tcf.channel.Command import Command
class Peer(peer.TransientPeer):

Back to the top