Default event track is half hour not 30 hours
authorVicente Jimenez Aguilar <googuy@gmail.com>
Mon, 19 May 2014 12:04:01 +0000 (14:04 +0200)
committerVicente Jimenez Aguilar <googuy@gmail.com>
Mon, 19 May 2014 12:04:01 +0000 (14:04 +0200)
This is a leftover from revision 9304
where the duration property of events changed unit
from minutes to hours but the defualt value remained 30.

addons/website_event_track/controllers/event.py

index 4a3d814..64df05e 100644 (file)
@@ -50,7 +50,7 @@ class website_event(http.Controller):
         forcetr = True
         for track in event_track_ids:
             start_date = (datetime.datetime.strptime(track.date, '%Y-%m-%d %H:%M:%S')).replace(tzinfo=pytz.utc).astimezone(local_tz)
-            end_date = start_date + datetime.timedelta(hours = (track.duration or 30))
+            end_date = start_date + datetime.timedelta(hours = (track.duration or 0.5))
             location = track.location_id or False
             locations.setdefault(location, [])