From 8f335f2d8e82ab5e8fd240498db0f8f6ed95e80b Mon Sep 17 00:00:00 2001 From: Markus Otto Date: Thu, 29 Aug 2019 13:27:06 +0300 Subject: [PATCH] foss4g2019 titlemap 198 --- foss4g-2019/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/foss4g-2019/__init__.py b/foss4g-2019/__init__.py index ec67994..1e84ee3 100644 --- a/foss4g-2019/__init__.py +++ b/foss4g-2019/__init__.py @@ -11,7 +11,7 @@ scheduleUrl = 'https://talks.2019.foss4g.org/bucharest/schedule/export/schedule. # For (really) too long titles titlemap = { - # + 198: 'Revamp of CRS management in the OSGeo C/C++ stack with PROJ and GDAL', } @@ -149,8 +149,8 @@ def tasks(queue, args, idlist, skiplist): sequence = introFrames, parameters = { '$id': event['id'], - '$title': event['title'], - '$subtitle': event['subtitle'], + '$title': event['title'] if event['id'] not in titlemap else titlemap[event['id']], + '$subtitle': event['subtitle'], '$personnames': event['personnames'] } ))