Changeset 466078 in indico


Ignore:
Timestamp:
02/16/12 18:02:37 (15 months ago)
Author:
Jose Benito <jose.benito.gonzalez@…>
Branches:
master, hello-world-walkthrough, ipv6, v0.98-series, v0.98.2, v0.98.3, v0.99, 051b2622c51afb171a1dedb46a0df4fbb0cbd02e, d9941f8582b36b24821a11ea5ba16fda6a457fb1
Children:
f0db2f
Parents:
e9d10a
Message:

[FIX] Fixed bug in ical export http api

File:
1 edited

Legend:

Unmodified
Added
Removed
  • indico/web/http_api/ical.py

    rb4a8e5 r466078  
    6060    event.set('url', fossil['url']) 
    6161    event.set('summary', fossil['title'].decode('utf-8')) 
    62     loc = fossil['location'].decode('utf-8') or '' 
     62    loc = fossil['location'] or '' 
     63    if loc: 
     64        loc = loc.decode('utf-8') 
    6365    if fossil['room']: 
    6466        loc += ' ' + fossil['room'].decode('utf-8') 
Note: See TracChangeset for help on using the changeset viewer.