tests: urls: Fix pylint

This commit is contained in:
Cole Robinson 2018-01-27 16:12:11 -05:00
parent ec8ee78d18
commit 5e70cee128
1 changed files with 2 additions and 2 deletions

View File

@ -131,6 +131,7 @@ def _testURL(fetcher, distroobj):
Test that our URL detection logic works for grabbing kernel, xen Test that our URL detection logic works for grabbing kernel, xen
kernel, and boot.iso kernel, and boot.iso
""" """
distname = distroobj.name
arch = distroobj.arch arch = distroobj.arch
hvmguest.os.arch = arch hvmguest.os.arch = arch
xenguest.os.arch = arch xenguest.os.arch = arch
@ -216,8 +217,7 @@ def _testURLWrapper(distroobj):
logging.debug("Testing for media arch=%s distroclass=%s", logging.debug("Testing for media arch=%s distroclass=%s",
distroobj.arch, distroobj.distroclass) distroobj.arch, distroobj.distroclass)
distname = distroobj.name sys.stdout.write("\nTesting %-25s " % distroobj.name)
sys.stdout.write("\nTesting %-25s " % distname)
sys.stdout.flush() sys.stdout.flush()
fetcher = urlfetcher.fetcherForURI(distroobj.url, "/tmp", meter) fetcher = urlfetcher.fetcherForURI(distroobj.url, "/tmp", meter)