Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/writers.py
diff options
context:
space:
mode:
Diffstat (limited to 'writers.py')
-rw-r--r--writers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/writers.py b/writers.py
index ea3e623..7a6738b 100644
--- a/writers.py
+++ b/writers.py
@@ -242,7 +242,7 @@ class _BaseWriter(object):
repl = self.get_template(escape=escape)
repl = {
'time': { 'start': repl['starttime'], 'end': repl['endtime'], 'timezone': repl['timeZone'] },
- 'meeting': { 'title': repl['pageTitle'], 'owner': repl['owner'], 'logs': repl['fullLogsFullURL'] },
+ 'meeting': { 'title': repl['pageTitle'], 'owner': repl['owner'], 'logs': repl['fullLogs'], 'logsFullURL': repl['fullLogsFullURL'] },
'attendees': [ person for person in repl['PeoplePresent'] ],
'agenda': [ { 'topic': item['topic'], 'notes': item['items'] } for item in repl['MeetingItems'] ],
'actions': [ action for action in repl['ActionItems'] ],