Skip to content

Commit

Permalink
use full date with time instead only date
Browse files Browse the repository at this point in the history
  • Loading branch information
voc committed Oct 25, 2019
1 parent a8970a5 commit 6a5a923
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions voctopublish/model/ticket_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self, ticket, ticket_id):
self.subtitle = self._validate_('Fahrplan.Subtitle', True)
self.abstract = self._validate_('Fahrplan.Abstract', True)
self.description = self._validate_('Fahrplan.Description', True)
self.date = self._validate_('Fahrplan.Date')
self.date = self._validate_('Fahrplan.DateTime')
self.local_filename = self.fahrplan_id + "-" + self.profile_slug + "." + self.profile_extension
self.local_filename_base = self.fahrplan_id + "-" + self.profile_slug
self.room = self._validate_('Fahrplan.Room')
Expand All @@ -67,7 +67,6 @@ def __init__(self, ticket, ticket_id):
self.track = self._validate_('Fahrplan.Track', True)
self.day = self._validate_('Fahrplan.Day', True)
self.url = self._validate_('Fahrplan.URL', True)
self.date = self._validate_('Fahrplan.Date')

# recording ticket properties

Expand Down

0 comments on commit 6a5a923

Please sign in to comment.