Bugfix for buildblt master.cfg.

- Legacy-Id: 9255
This commit is contained in:
buildbot 2015-03-19 22:25:31 +00:00
parent 5f38c12de4
commit a056fcaaee

View file

@ -126,7 +126,7 @@ class UnitTest(WarningCountingShellCommand):
def createSummary(self, log):
info = {}
for line in log.getText().split("\n"):
for key in regexPatterns:
for key in self.regexPatterns:
regex = regexPatterns[key]
match = re.match(regex, line)
if match: