diff options
author | Benoit Foucher <benoit@zeroc.com> | 2017-06-22 11:57:58 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2017-06-22 11:57:58 +0200 |
commit | db29e3e5b5dfc826319c2f83f4c58c7240e6c803 (patch) | |
tree | 69a186837e271fdff6407f60fa47e3ca7e43aae4 /scripts/Util.py | |
parent | Added diagnostics to track down address already in use failures (diff) | |
download | ice-db29e3e5b5dfc826319c2f83f4c58c7240e6c803.tar.bz2 ice-db29e3e5b5dfc826319c2f83f4c58c7240e6c803.tar.xz ice-db29e3e5b5dfc826319c2f83f4c58c7240e6c803.zip |
Fixed variable not defined error in Util.py
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Util.py b/scripts/Util.py index 8a247b7983e..34a63f3086e 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1815,7 +1815,7 @@ class RemoteProcessController(ProcessController): self.stdout = False def __str__(self): - return "{0} proxy={1}".format(self.exe, proxy) + return "{0} proxy={1}".format(self.exe, self.proxy) def waitReady(self, ready, readyCount, startTimeout): self.proxy.waitReady(startTimeout) |