aboutsummaryrefslogtreecommitdiff
path: root/bin/glance
diff options
context:
space:
mode:
Diffstat (limited to 'bin/glance')
-rwxr-xr-xbin/glance4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/glance b/bin/glance
index 35ecaba..52f5c8a 100755
--- a/bin/glance
+++ b/bin/glance
@@ -440,7 +440,7 @@ def do_chart(args):
if args.card_tracker:
since = date.smart_parse(args.since)
- until = date.smart_parse(args.until)
+ until = date.smart_parse(args.until, end_of_day=True)
all_cards = report.issues.values()
closed_cards = [ c for c in all_cards if c.date('resolutiondate') ]
@@ -538,7 +538,7 @@ def do_filter(args):
iso8601.parse_date(w['started']) >= since ]
if args.worklog_until:
- until = date.smart_parse(args.worklog_until)
+ until = date.smart_parse(args.worklog_until, end_of_day=True)
for i in issues:
i['worklog'] = [ w for w in i['worklog'] if
iso8601.parse_date(w['started']) <= until ]