Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Leherbauer2011-11-07 09:51:21 +0000
committerAnton Leherbauer2011-11-07 10:01:51 +0000
commit09296f3292d6e5fc24bf48de95f6318062c1f769 (patch)
treea9438eacd40d8cd9b080397b01e92aac21d5a84c
parent6aacaea278eefacd136e6b669d3f9b36e43424dd (diff)
downloadorg.eclipse.tcf-09296f3292d6e5fc24bf48de95f6318062c1f769.tar.gz
org.eclipse.tcf-09296f3292d6e5fc24bf48de95f6318062c1f769.tar.xz
org.eclipse.tcf-09296f3292d6e5fc24bf48de95f6318062c1f769.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