[Scummvm-git-logs] scummvm-sites director-buildbot -> 75f81a6708f125091ea2ed9c09a49e06fcaa7a43

rvanlaar noreply at scummvm.org
Sun Feb 5 22:06:11 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:
75f81a6708 DIRECTOR-BUILDBOT: Force int() on input parameters


Commit: 75f81a6708f125091ea2ed9c09a49e06fcaa7a43
    https://github.com/scummvm/scummvm-sites/commit/75f81a6708f125091ea2ed9c09a49e06fcaa7a43
Author: Roland van Laar (roland at rolandvanlaar.nl)
Date: 2023-02-05T23:05:40+01:00

Commit Message:
DIRECTOR-BUILDBOT: Force int() on input parameters

Force int for time settings on lingo build step.

Changed paths:
    director/steps.py


diff --git a/director/steps.py b/director/steps.py
index 7a81e70..67b18da 100644
--- a/director/steps.py
+++ b/director/steps.py
@@ -158,8 +158,8 @@ class GenerateStartMovieCommands(buildstep.ShellMixin, steps.BuildStep):
                         descriptionDone=name,
                         command=self.generate_command(name),
                         env=default_env,
-                        timeout=settings["TIMEOUT"],
-                        maxTime=settings["MAX_TIME"],
+                        timeout=int(settings["TIMEOUT"]),
+                        maxTime=int(settings["MAX_TIME"]),
                         interruptSignal="QUIT",
                         logEnviron=False,
                     )




More information about the Scummvm-git-logs mailing list