diff options
author | Daniil Baturin <daniil@baturin.org> | 2021-01-14 12:21:04 +0700 |
---|---|---|
committer | Daniil Baturin <daniil@baturin.org> | 2021-01-14 12:21:04 +0700 |
commit | b126a213517a769de98c13256ec948deeadbf7f8 (patch) | |
tree | 703733873e3c971cddc76b90a81db34908a1b2b5 /scripts | |
parent | 80dc8fb51953cd17de7a7c516f2ec5eddfc7e546 (diff) | |
download | community.vyos.net-b126a213517a769de98c13256ec948deeadbf7f8.tar.gz community.vyos.net-b126a213517a769de98c13256ec948deeadbf7f8.zip |
Fix a stray paren in the snapshot list generator.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/list-snapshots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/list-snapshots.py b/scripts/list-snapshots.py index 0d1cedd..1aab86f 100755 --- a/scripts/list-snapshots.py +++ b/scripts/list-snapshots.py @@ -51,7 +51,7 @@ tmpl = jinja2.Template(""" <h3>{{s.name}}</h3> <ul> {% for f in s.files %} - <li><a href="{{f.link}})">{{f.name}} ({{f.platform}})</a></li> + <li><a href="{{f.link}}">{{f.name}} ({{f.platform}})</a></li> {% endfor %} </ul> {% endfor %} |