Skip to content

Commit

Permalink
Merge pull request #62 from tzumainn/availability-help-text
Browse files Browse the repository at this point in the history
Fixed date range help text to put a space between dates
  • Loading branch information
tzumainn authored Oct 22, 2024
2 parents 950b20f + 271cde9 commit db05dc4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion esileapclient/osc/v1/lease.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_parser(self, prog_name):
"which intersect with the given range."
"Must pass in two valid datetime strings."
"Example: --time-range 2020-06-30T00:00:00"
"2021-06-30T00:00:00")
" 2021-06-30T00:00:00")
parser.add_argument(
'--project',
dest='project_id',
Expand Down
4 changes: 2 additions & 2 deletions esileapclient/osc/v1/offer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def get_parser(self, prog_name):
"which begin and end in the given range."
"Must pass in two valid datetime strings."
"Example: --time-range 2020-06-30T00:00:00"
"2021-06-30T00:00:00")
" 2021-06-30T00:00:00")
parser.add_argument(
'--availability-range',
dest='availability_range',
Expand All @@ -131,7 +131,7 @@ def get_parser(self, prog_name):
"the given range. Must pass in two valid datetime "
"strings."
"Example: --availability-range 2020-06-30T00:00:00"
"2021-06-30T00:00:00")
" 2021-06-30T00:00:00")
parser.add_argument(
'--project',
dest='project_id',
Expand Down

0 comments on commit db05dc4

Please sign in to comment.