Skip to content

Commit

Permalink
Change line 44 to include 0123 for day instead of 012. Change email
Browse files Browse the repository at this point in the history
  • Loading branch information
pjpokran committed Dec 1, 2017
1 parent 0adc01a commit e3669ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion siphon/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __getitem__(self, item):
class DatasetCollection(IndexableMapping):
"""Extend ``IndexableMapping`` to allow datetime-based filter queries."""

default_regex = re.compile(r'(?P<year>\d{4})(?P<month>[01]\d)(?P<day>[012]\d)_'
default_regex = re.compile(r'(?P<year>\d{4})(?P<month>[01]\d)(?P<day>[0123]\d)_'
r'(?P<hour>[012]\d)(?P<minute>[0-5]\d)')

def _get_datasets_with_times(self, regex):
Expand Down

0 comments on commit e3669ff

Please sign in to comment.