Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2011-11-07 09:51:21 +0000
committerAnton Leherbauer2011-11-07 10:02:35 +0000
commitafa225657e329e2b99cac93ac0ca80bdd0a944b5 (patch)
tree3ddc1302c112c67bf4edbacb2c17f847c9147fbf
parent2e6ca671c5d2a96ebe4f6abfe7ae45db95d61cc6 (diff)
downloadorg.eclipse.tcf-afa225657e329e2b99cac93ac0ca80bdd0a944b5.tar.gz
org.eclipse.tcf-afa225657e329e2b99cac93ac0ca80bdd0a944b5.tar.xz
org.eclipse.tcf-afa225657e329e2b99cac93ac0ca80bdd0a944b5.zip
TCF Python: Fixed typo
-rw-r--r--python/src/tcf/services/local/LocatorService.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/src/tcf/services/local/LocatorService.py b/python/src/tcf/services/local/LocatorService.py
index 8cff0c797..80122c528 100644
--- a/python/src/tcf/services/local/LocatorService.py
+++ b/python/src/tcf/services/local/LocatorService.py
@@ -205,7 +205,7 @@ class LocatorService(locator.LocatorService):
a.address = None
else:
a.address = InetAddress(a.host, addr)
- a.time_stamp = time
+ a.time_stamp = msec
a.used = False
except Exception as x:
service._log("Unhandled exception in TCF discovery DNS lookup thread", x)

Back to the top