|
|
@ -655,6 +655,11 @@ class RCBugPolicy(BasePolicy):
|
|
|
|
name and the value is the list of open RC bugs for it.
|
|
|
|
name and the value is the list of open RC bugs for it.
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
bugs = {}
|
|
|
|
bugs = {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if not os.path.exists(filename):
|
|
|
|
|
|
|
|
self.logger.info("%s missing; skipping bug-based processing" % filename)
|
|
|
|
|
|
|
|
return bugs
|
|
|
|
|
|
|
|
|
|
|
|
self.logger.info("Loading RC bugs data from %s", filename)
|
|
|
|
self.logger.info("Loading RC bugs data from %s", filename)
|
|
|
|
for line in open(filename, encoding='ascii'):
|
|
|
|
for line in open(filename, encoding='ascii'):
|
|
|
|
ln = line.split()
|
|
|
|
ln = line.split()
|
|
|
|