diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-18 10:52:12 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-18 10:52:12 +0200 |
commit | 274f56db4ad4498a1c740fe47138d6d245728f39 (patch) | |
tree | 2afca74cd3cb85447e20ae8ba64888096e9f9ea7 | |
parent | 9687de8fa9e9b65c0850819d22e633e3ef719fb5 (diff) | |
download | jenkins.debian.net-274f56db4ad4498a1c740fe47138d6d245728f39.tar.xz |
fix typo/lango
-rwxr-xr-x | bin/reproducible_scheduler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_scheduler.py b/bin/reproducible_scheduler.py index 58a15b3a..8b398e26 100755 --- a/bin/reproducible_scheduler.py +++ b/bin/reproducible_scheduler.py @@ -262,9 +262,9 @@ def scheduler(): else: many_old_base = 0 # ... for suite in SUITES: - if suite = 'unstable': + if suite == 'unstable': suite_many_old = many_old_base*10 # experimental is roughly one tenth of the size of the other suites - elif suite = 'testing': + elif suite == 'testing': suite_many_old = many_old_base*5 # re-schedule testing less than unstable as we care more about unstable and because unstable changes more frequently else: suite_many_old = many_old_base |