Skip to content

Commit

Permalink
[hotfix] date casting
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Jan 14, 2016
1 parent 67ea040 commit 69a385b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions panoramix/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,8 +463,8 @@ def query(
qry = qry.group_by(*groupby_exprs)

time_filter = [
timestamp >= from_dttm,
timestamp <= to_dttm,
timestamp >= from_dttm.isoformat(),
timestamp <= to_dttm.isoformat(),
]
inner_time_filter = copy(time_filter)
if inner_from_dttm:
Expand Down

0 comments on commit 69a385b

Please sign in to comment.