Skip to content

Commit 6f8f1e1

Browse files
petrutlucian94claudiubelu
authored andcommitted
Fix help strings
1 parent ec51a6d commit 6f8f1e1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

coriolisclient/cli/deployments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,10 @@ def get_parser(self, prog_name):
275275
parser = super(ListDeployment, self).get_parser(prog_name)
276276
parser.add_argument(
277277
'--marker',
278-
help='The id of the last retrieved execution.')
278+
help='The id of the last retrieved deployment.')
279279
parser.add_argument(
280280
'--limit', type=int,
281-
help='Maximum number of executions to retrieve.')
281+
help='Maximum number of deployments to retrieve.')
282282
parser.add_argument(
283283
'--sort',
284284
help='Comma-separated list of sort keys and directions in the '

coriolisclient/cli/transfers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -322,10 +322,10 @@ def get_parser(self, prog_name):
322322
parser = super(ListTransfer, self).get_parser(prog_name)
323323
parser.add_argument(
324324
'--marker',
325-
help='The id of the last retrieved execution.')
325+
help='The id of the last retrieved transfer.')
326326
parser.add_argument(
327327
'--limit', type=int,
328-
help='Maximum number of executions to retrieve.')
328+
help='Maximum number of transfers to retrieve.')
329329
parser.add_argument(
330330
'--sort',
331331
help='Comma-separated list of sort keys and directions in the '

0 commit comments

Comments
 (0)