summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_indexes.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-03-02 17:36:31 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-02 19:29:32 +0100
commite2e73af6f1e27770a991f0ad7cffc2a47eddc8ae (patch)
treeff3647f2b26ec80a62d639f872b7810766d1579f /bin/reproducible_html_indexes.py
parenta6a4843f039c541330ea86a61515f63cd2a3aef3 (diff)
downloadjenkins.debian.net-e2e73af6f1e27770a991f0ad7cffc2a47eddc8ae.tar.xz
reproducible: html_indexes: fix a bunch of 'the backslash is redundant between brackets' pep8 errors
Diffstat (limited to 'bin/reproducible_html_indexes.py')
-rwxr-xr-xbin/reproducible_html_indexes.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/bin/reproducible_html_indexes.py b/bin/reproducible_html_indexes.py
index 8277f09c..b3687cee 100755
--- a/bin/reproducible_html_indexes.py
+++ b/bin/reproducible_html_indexes.py
@@ -183,7 +183,7 @@ pages = {
'icon_link': '/index_unreproducible.html',
'query': 'FTBR_last24h',
'query2': 'FTBR_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'failed to built reproducibly in total, $tot of them in the last 24h in $suite/$arch:'),
'timely': True
},
@@ -192,7 +192,7 @@ pages = {
'icon_link': '/index_FTBFS.html',
'query': 'FTBFS_last24h',
'query2': 'FTBFS_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'failed to built from source in total, $tot of them in the last 24h in $suite/$arch:'),
'timely': True
},
@@ -201,7 +201,7 @@ pages = {
'icon_link': '/index_reproducible.html',
'query': 'reproducible_last24h',
'query2': 'reproducible_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'successfully built reproducibly in total, $tot of them in the last 24h in $suite/$arch:'),
'timely': True
},
@@ -215,7 +215,7 @@ pages = {
'icon_link': '/index_unreproducible.html',
'query': 'FTBR_last48h',
'query2': 'FTBR_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'failed to built reproducibly in total, $tot of them in the last 48h in $suite/$arch:'),
'timely': True
},
@@ -224,7 +224,7 @@ pages = {
'icon_link': '/index_FTBFS.html',
'query': 'FTBFS_last48h',
'query2': 'FTBFS_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'failed to built from source in total, $tot of them in the last 48h in $suite/$arch:'),
'timely': True
},
@@ -233,7 +233,7 @@ pages = {
'icon_link': '/index_reproducible.html',
'query': 'reproducible_last48h',
'query2': 'reproducible_all',
- 'text': Template('$count packages ($percent% of ${count_total}) ' + \
+ 'text': Template('$count packages ($percent% of ${count_total}) ' +
'successfully built reproducibly in total, $tot of them in the last 48h in $suite/$arch:'),
'timely': True
},
@@ -260,7 +260,7 @@ def build_leading_text_section(section, rows, suite, arch):
try:
percent = round(((total/count_total)*100), 1) # count_total is
except ZeroDivisionError: # defined in common
- log.error('Looks like there are either no tested package or no ' + \
+ log.error('Looks like there are either no tested package or no ' +
'packages available at all. Maybe it\'s a new database?')
percent = 0.0
try: