Bugfix for buildblt master.cfg.

- Legacy-Id: 9256
This commit is contained in:
buildbot 2015-03-19 22:27:13 +00:00
parent a056fcaaee
commit 3cf1c73af8

View file

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