[trivial] Fix spelling

Change-Id: I4cf8369a78d50efcd164259c1d92bfb56a8b3210
This commit is contained in:
Petr Kovar
2017-01-18 19:41:42 +01:00
parent 4f08d4d1c5
commit daf4839bbe

View File

@@ -50,18 +50,18 @@ class CreateDataSource(command.ShowOne):
parser.add_argument(
'--url',
metavar="<url>",
help="Url for the data source [REQUIRED]",
help="URL for the data source [REQUIRED]",
required=True
)
parser.add_argument(
'--username',
metavar="<username>",
help="Username for accessing the data source url"
help="Username for accessing the data source URL"
)
parser.add_argument(
'--password',
metavar="<password>",
help="Password for accessing the data source url"
help="Password for accessing the data source URL"
)
parser.add_argument(
'--description',
@@ -228,17 +228,17 @@ class UpdateDataSource(command.ShowOne):
parser.add_argument(
'--url',
metavar="<url>",
help="Url for the data source"
help="URL for the data source"
)
parser.add_argument(
'--username',
metavar="<username>",
help="Username for accessing the data source url"
help="Username for accessing the data source URL"
)
parser.add_argument(
'--password',
metavar="<password>",
help="Password for accessing the data source url"
help="Password for accessing the data source URL"
)
parser.add_argument(
'--description',