debug on tests

This commit is contained in:
Cedric Boscher 2016-06-15 18:01:19 +02:00
parent 6ed471b9d6
commit e4e1d81f9f
2 changed files with 20 additions and 7 deletions

View file

@ -311,7 +311,8 @@ def _time_range_match(vobject_item, filter_, child_name):
return True
elif child_name == "VJOURNAL":
dtstart = getattr(child, "dtstart", None)
dtstart = getattr(child, "dstart", None)
if dtstart is not None:
dtstart = dtstart.value
if not isinstance(dtstart, datetime):
@ -321,6 +322,7 @@ def _time_range_match(vobject_item, filter_, child_name):
.replace(tzinfo=timezone.utc))
else:
dtstart_is_datetime = True
if dtstart_is_datetime:
# Line 1
return start <= dtstart and end > dtstart