diff options
author | Mattia Rizzolo <mattia@debian.org> | 2016-01-08 13:46:43 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-01-08 14:47:29 +0100 |
commit | 90da7455c6268f76ba282b2a7123f215402c0f9a (patch) | |
tree | aa45db2b377348e2f95e91f5f3218a9eed884d9d | |
parent | 56aaa226df68dbf0ca9eec4102ef0762975dc6cc (diff) | |
download | jenkins.debian.net-90da7455c6268f76ba282b2a7123f215402c0f9a.tar.xz |
fix syntax
-rwxr-xr-x | bin/reproducible_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index 1b191b5c..f39e0a91 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -138,7 +138,7 @@ html_header = Template("""<!DOCTYPE html> try: JOB_URL = os.environ['JOB_URL'] -except KeyError +except KeyError: JOB_FOOTER = '' else: JOB_NAME = os.path.basename(JOB_URL[:-1]) |