tests: Fix a minor bug in fixture.py

debug is a part of test_log object.

Signed-off-by: Ayaz Akram <yazakram@ucdavis.edu>
Change-Id: I56d950483c1d86b76b4f652741d2323c1b078e3e
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/19768
Reviewed-by: Jason Lowe-Power <jason@lowepower.com>
Maintainer: Jason Lowe-Power <jason@lowepower.com>
Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
Ayaz Akram
2019-08-01 13:22:48 -07:00
committed by Bobby R. Bruce
parent 432afa21f5
commit 5e1e76efa3

View File

@@ -321,7 +321,8 @@ class DownloadedArchive(DownloadedProgram):
t = self._getremotetime()
except urllib2.URLError:
# Problem checking the server, use the old files.
log.test_log.debug("Could not contact server. Binaries may be old.")
log.test_log.debug("Could not contact server. "
"Binaries may be old.")
return
# If the server version is more recent, download it
if t > os.path.getmtime(self.filename):