Skip to content

Commit

Permalink
Fix VOResource date
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Dec 16, 2019
1 parent 914f93b commit 4de9615
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions daiquiri/core/renderers/voresource.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ class VoresourceRendererMixin(CapabilitiesRendererMixin, TablesetRendererMixin):

def render_voresource(self, metadata):
self.start('ri:Resource', {
'created': metadata.get('created'),
'updated': metadata.get('updated'),
'created': metadata.get('created') + 'T00:00:00',
'updated': metadata.get('updated') + 'T00:00:00',
'status': metadata.get('voresource_status'),
'xsi:type': metadata.get('vodataservice_type'),
'xmlns:xsi': 'http://www.w3.org/2001/XMLSchema-instance',
Expand Down

0 comments on commit 4de9615

Please sign in to comment.