diff options
Diffstat (limited to 'scripts/Controller.py')
-rwxr-xr-x | scripts/Controller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Controller.py b/scripts/Controller.py index 7eee0574c1f..85934176d0d 100755 --- a/scripts/Controller.py +++ b/scripts/Controller.py @@ -45,7 +45,7 @@ class ControllerDriver(Driver): parseOptions(self, options, { "clean" : "clean" }) if not self.endpoints: - self.endpoints = "tcp -h " + (self.interface or "127.0.0.1") + self.endpoints = ("tcp -h " + self.interface) if self.interface else "tcp" def run(self, mappings, testSuiteIds): |