Skip to content

Commit

Permalink
hotfix for product begin and end times
Browse files Browse the repository at this point in the history
  • Loading branch information
jankovicgd committed Nov 25, 2022
1 parent 5a92656 commit 93ccd1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eoxserver/resources/coverages/registration/timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def create_product(
"file_identifier": file_identifier,
"index": index,
"product_type": product_type,
"begin_time": begin_time,
"end_time": end_time
"begin_time": begin_time.strftime('%Y%m%d'),
"end_time": end_time.strftime('%Y%m%d')
}

product_identifier = product_template.format(**template_values)
Expand Down

0 comments on commit 93ccd1b

Please sign in to comment.