[Scummvm-git-logs] scummvm-sites director-buildbot -> 769247fe2c45f670269a9168c54253f9892c0cd0
rvanlaar
noreply at scummvm.org
Thu Jan 5 22:16:10 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm-sites' repo located at https://github.com/scummvm/scummvm-sites .
Summary:
769247fe2c remove createSummary's log parameter
Commit: 769247fe2c45f670269a9168c54253f9892c0cd0
https://github.com/scummvm/scummvm-sites/commit/769247fe2c45f670269a9168c54253f9892c0cd0
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2023-01-05T23:14:58+01:00
Commit Message:
remove createSummary's log parameter
The parameter was removed in the newer buildbot version.
Remove it as well in our implementation.
Changed paths:
director/steps.py
diff --git a/director/steps.py b/director/steps.py
index 0f025e6..d7d5e28 100644
--- a/director/steps.py
+++ b/director/steps.py
@@ -78,8 +78,8 @@ class ScummVMTest(steps.WarningCountingShellCommand):
self.errorCount += 1
@defer.inlineCallbacks
- def createSummary(self, log):
- super().createSummary(log)
+ def createSummary(self):
+ super().createSummary()
if self.errorCount:
yield self.addCompleteLog(
f"errors ({self.errorCount})", "\n".join(self.loggedErrors) + "\n"
More information about the Scummvm-git-logs
mailing list