From 8cf4c259c01d109bfb4fe192a3297a62360c26de Mon Sep 17 00:00:00 2001 From: Sascha Bischoff Date: Tue, 8 Aug 2017 16:34:52 +0100 Subject: [PATCH] gem5: fixed a typo Changed "self.longdelay" to "self.long_delay". --- wlauto/common/gem5/device.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wlauto/common/gem5/device.py b/wlauto/common/gem5/device.py index 83a1d5df..8defbb33 100644 --- a/wlauto/common/gem5/device.py +++ b/wlauto/common/gem5/device.py @@ -462,7 +462,7 @@ class BaseGem5Device(object): # gem5 might be slow. Hence, we need to make the ping timeout very long. def ping(self): self.logger.debug("Pinging gem5 to see if it is still alive") - self.gem5_shell('ls /', timeout=self.longdelay) + self.gem5_shell('ls /', timeout=self.long_delay) # Additional Android-specific methods. def forward_port(self, _): # pylint: disable=R0201