Merge pull request #50 from vice/master

Default event track is half hour not 30 hours
This commit is contained in:
Fabien Pinckaers 2014-05-20 09:47:49 +02:00
commit a29f695953
1 changed files with 1 additions and 1 deletions

View 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, [])