publist

managing my list of publications, talks, reviews
git clone https://a3nm.net/git/publist/
Log | Files | Refs | README | LICENSE

commit d98d64777e80b4c4a0a314f8bd3ab696b0a4ddcd
parent f2c4d0d9b90edae90ff0303425099e7e3a3b9dbe
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Thu, 15 May 2025 22:39:10 +0200

fix

Diffstat:
make_talks_html.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/make_talks_html.py b/make_talks_html.py @@ -28,7 +28,7 @@ def mkyearsep(lastyear, year): return s def mklink(text, obj, pref=''): - if pref + 'url' in obj.keys() and obj['url'].lower() != "none": + if pref + 'url' in obj.keys() and obj[pref + 'url'].lower() != "none": return '<a href="%s">%s</a>' % (obj[pref + 'url'], text) return text