diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-10 20:40:48 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-10 20:40:48 +0200 |
commit | 0dbca012b71aac151dde09e19690f72d216a12e4 (patch) | |
tree | 75c390f97064af8c80ef5ccb5f6289c14348919d /bin | |
parent | 80fc4399dfa031355c68b8feae75c364dc1ebfe8 (diff) | |
download | jenkins.debian.net-0dbca012b71aac151dde09e19690f72d216a12e4.tar.xz |
fix syntax
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_indexes.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py index 5eabe473..b8dd9b7b 100755 --- a/bin/reproducible_html_indexes.py +++ b/bin/reproducible_html_indexes.py @@ -537,8 +537,8 @@ def build_page(page, suite=None, arch=None): def generate_schedule(arch): """ the schedule pages are very different than others index pages """ - log.info('Building the schedule index page for ' + arch +'...') - title = 'Packages currently scheduled on {arch} for testing for build reproducibility' + log.info('Building the schedule index page for ' + arch + '...') + title = 'Packages currently scheduled on ' + arch + ' for testing for build reproducibility' query = 'SELECT sch.date_scheduled, s.suite, s.architecture, s.name ' + \ 'FROM schedule AS sch JOIN sources AS s ON sch.package_id=s.id ' + \ 'WHERE sch.date_build_started = "" AND s.architecture="{arch}" ORDER BY sch.date_scheduled' |