diff options
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 8ba68ad0036..2251db283bf 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -1805,7 +1805,7 @@ class Driver: def waitReady(self, ready, readyCount, startTimeout): if ready: - self.expect("%s ready\n" % self.ready, timeout = startTimeout) + self.expect("%s ready\n" % ready, timeout = startTimeout) else: while readyCount > 0: self.expect("[^\n]+ ready\n", timeout = startTimeout) |