From ff9483b73be04ce6d078e6a136b5b61875cdcb92 Mon Sep 17 00:00:00 2001 From: Josiah Carlson Date: Sat, 2 Feb 2019 19:38:54 -0800 Subject: [PATCH] Changed error messages, bumped version --- crontab/_crontab.py | 8 +++----- setup.py | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/crontab/_crontab.py b/crontab/_crontab.py index fa7bb90..2b9efbd 100644 --- a/crontab/_crontab.py +++ b/crontab/_crontab.py @@ -297,7 +297,7 @@ class _Matcher(object): if increment: next_value = start + increment _assert(next_value <= _end_limit, - "the first next value %r out of range [%r, %r]", + "first next value %r is out of range [%r, %r]", next_value, start, _end_limit) return set(range(start, end+1, increment or 1)) @@ -338,11 +338,9 @@ class _Matcher(object): _assert(increment > 0, "you can only use positive increment values, you provided %r", increment) - exceed_limit_error_msg_tpl = ("you can only use increment values " - "which less than or equal to the %r") _assert(increment <= _end_limit, - exceed_limit_error_msg_tpl, - _end_limit) + "increment value must be less than %r, you provided %r", + _end_limit, increment) # handle singles and ranges good = _parse_piece(entry) diff --git a/setup.py b/setup.py index 5545920..b151196 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ except: setup( name='crontab', - version='0.22.4', + version='0.22.5', description='Parse and use crontab schedules in Python', author='Josiah Carlson', author_email='josiah.carlson@gmail.com',