fix error msg, it is --keep-within, not --within

(cherry picked from commit 9957282315)
This commit is contained in:
Thomas Waldmann 2017-03-11 00:00:25 +01:00
parent 1e44ea8869
commit c07c911643
1 changed files with 2 additions and 2 deletions

View File

@ -216,9 +216,9 @@ def prune_within(archives, within):
hours = int(within[:-1]) * multiplier[within[-1]] hours = int(within[:-1]) * multiplier[within[-1]]
except (KeyError, ValueError): except (KeyError, ValueError):
# I don't like how this displays the original exception too: # I don't like how this displays the original exception too:
raise argparse.ArgumentTypeError('Unable to parse --within option: "%s"' % within) raise argparse.ArgumentTypeError('Unable to parse --keep-within option: "%s"' % within)
if hours <= 0: if hours <= 0:
raise argparse.ArgumentTypeError('Number specified using --within option must be positive') raise argparse.ArgumentTypeError('Number specified using --keep-within option must be positive')
target = datetime.now(timezone.utc) - timedelta(seconds=hours * 3600) target = datetime.now(timezone.utc) - timedelta(seconds=hours * 3600)
return [a for a in archives if a.ts > target] return [a for a in archives if a.ts > target]