boottest - Add error message if fetching the manifest fails

This commit is contained in:
Joe Talbott 2015-02-04 16:25:36 -05:00
parent aeecde32ed
commit 7adfb13783

View File

@ -61,6 +61,9 @@ class TouchManifest(object):
while retries > 0 and not success:
success = self.__fetch_manifest(distribution, series)
retries -= 1
if not success:
print("E: [%s] - Unable to fetch manifest: %s %s" % (
time.asctime(), distribution, series))
self._manifest = self._load()