From 7adfb13783c512a65f25357225c2a1fdca65ec2d Mon Sep 17 00:00:00 2001 From: Joe Talbott Date: Wed, 4 Feb 2015 16:25:36 -0500 Subject: [PATCH] boottest - Add error message if fetching the manifest fails --- boottest.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/boottest.py b/boottest.py index 51f0aa5..1ae180e 100644 --- a/boottest.py +++ b/boottest.py @@ -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()