aboutsummaryrefslogtreecommitdiff
path: root/feeds.py
diff options
context:
space:
mode:
authorAlban Gruin2017-09-28 13:30:38 +0200
committerAlban Gruin2017-09-28 13:30:38 +0200
commitcd2c473be7ebc33d7992441ae3ff1bf52785488c (patch)
treed32ec9d68746a6f970c696ab43bc9c39c2bb2f0c /feeds.py
parent436099ebef2acb8a3965cc39b07d99f61fa1eba2 (diff)
Ajout du type de cours dans le nom de l’évèmenent ICS
Diffstat (limited to 'feeds.py')
-rw-r--r--feeds.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/feeds.py b/feeds.py
index cdecd73..564b285 100644
--- a/feeds.py
+++ b/feeds.py
@@ -80,7 +80,7 @@ class IcalFeed(Feed):
"dtstart": item.begin,
"dtend": item.end,
"dtstamp": item.last_update,
- "summary": item.name,
+ "summary": item.name + " (" + item.type + ")",
"location": format_rooms(item.rooms.all())}