Skip to content

Commit

Permalink
Updated logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ntlhui committed May 7, 2023
1 parent a30e841 commit 9e26d1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e4e_data_management/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def initialize_dataset(self, date: dt.date, project: str, location: str, directo
location (str): Expedition common name
directory (Path): Path to create dataset in
"""
dataset_name = f'{date.year:04d}.{date.month:02d}.{project}.{location}'
dataset_name = f'{date.year:04d}.{date.month:02d}.{date.day:02d}.{project}.{location}'
dataset_path = directory.joinpath(dataset_name)

if dataset_name in self.datasets:
Expand Down

0 comments on commit 9e26d1e

Please sign in to comment.