Removed some trailing spaces.

This commit is contained in:
Patrick Brunier 2021-03-18 22:04:18 +01:00
parent c323baa44e
commit 249c7c3714

View File

@ -104,6 +104,6 @@ class TimeRange:
else: else:
stop = int(stops) stop = int(stops)
if start > stop > 0: if start > stop > 0:
raise Exception('Start date is after stop date for timerange "%s"' % text) raise Exception('Start date is after stop date for timerange "%s"' % text)
return TimeRange(stype[0], stype[1], start, stop) return TimeRange(stype[0], stype[1], start, stop)
raise Exception('Incorrect syntax for timerange "%s"' % text) raise Exception('Incorrect syntax for timerange "%s"' % text)