From b5497882100b5d875d9d82e20ff13958baed5238 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 22 Oct 2012 13:52:14 +0100 Subject: [PATCH] Skip bug-based processing if BugsV is missing --- policies/policy.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/policies/policy.py b/policies/policy.py index 60dacf9..4d3e909 100644 --- a/policies/policy.py +++ b/policies/policy.py @@ -494,6 +494,10 @@ class RCBugPolicy(BasePolicy): name and the value is the list of open RC bugs for it. """ bugs = {} + if not os.path.exists(filename): + self.log("%s missing; skipping bug-based processing" % filename) + return bugs + self.log("Loading RC bugs data from %s" % filename) for line in open(filename, encoding='ascii'): l = line.split()