We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eee5b3 commit 54412a8Copy full SHA for 54412a8
roboflow/deployment.py
@@ -16,11 +16,11 @@ def is_valid_ISO8601_timestamp(ts):
16
17
def check_from_to_timestamp(from_timestamp, to_timestamp, default_timedelta):
18
if from_timestamp and not is_valid_ISO8601_timestamp(from_timestamp):
19
- print("Please provide a valid from_timestamp in ISO8601 format")
+ print("Please provide a valid from_timestamp in ISO8601 format (YYYY-MM-DD HH:MM:SS)")
20
exit(1)
21
22
if to_timestamp and not is_valid_ISO8601_timestamp(to_timestamp):
23
- print("Please provide a valid to_timestamp in ISO8601 format")
+ print("Please provide a valid to_timestamp in ISO8601 format (YYYY-MM-DD HH:MM:SS)")
24
25
26
time_now = datetime.now().astimezone() # local timezone
0 commit comments