Skip to content

Commit

Permalink
using the wrong until boundary
Browse files Browse the repository at this point in the history
  • Loading branch information
obfuscurity committed Oct 20, 2015
1 parent a48f608 commit ccd0c89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion whisper.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ def file_fetch(fh, fromTime, untilTime, now=None):
if untilTime > now:
untilTime = now

diff = now - fromTime
diff = untilTime - fromTime
for archive in header['archives']:
if archive['retention'] >= diff:
break
Expand Down

0 comments on commit ccd0c89

Please sign in to comment.