# HG changeset patch # User Paul Boddie # Date 1423172194 -3600 # Node ID 45cebd4164007c4d6ceb789a229157b0c9efe406 # Parent 3a37d5b57c4e9c9b0d05cfbd03a059c178226cfa Removed the redundant next_date function. diff -r 3a37d5b57c4e -r 45cebd416400 imiptools/dates.py --- a/imiptools/dates.py Thu Feb 05 22:35:48 2015 +0100 +++ b/imiptools/dates.py Thu Feb 05 22:36:34 2015 +0100 @@ -197,13 +197,4 @@ return format_datetime(to_timezone(datetime.utcnow(), "UTC")) -def next_date(s): - - """ - Return an iCalendar-compatible string indicating the next date after the one - provided by 's'. - """ - - return format_datetime(get_datetime(s) + timedelta(1)) - # vim: tabstop=4 expandtab shiftwidth=4