Skip to content

Commit 23b48d3

Browse files
committed
Reword date-range error to allow equal dates per review
Signed-off-by: Arpit Jain <arpitjain099@gmail.com>
1 parent e1558f4 commit 23b48d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

subscriber/podaac_access.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def validate(args):
211211

212212
if start is not None and end is not None and start > end:
213213
raise ValueError(
214-
"Start date and end date are out of order. End date needs to be a later time than start date.") # noqa E501
214+
"--end-date must be greater than or equal to --start-date.")
215215

216216
if 'minutes' in args:
217217
if args.minutes:

0 commit comments

Comments
 (0)