summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Kovar <pkovar@redhat.com>2017-01-18 19:41:42 +0100
committerPetr Kovar <pkovar@redhat.com>2017-01-18 19:42:36 +0100
commitdaf4839bbe0166fe2ea972dc0447bd1980192cb6 (patch)
tree0608e740f2eb8d95e864f777ae2494d4712aab06
parent4f08d4d1c5c691f59f88a2ab455e6567bd37b9fc (diff)
downloadpython-saharaclient-daf4839bbe0166fe2ea972dc0447bd1980192cb6.tar.gz
[trivial] Fix spelling
Change-Id: I4cf8369a78d50efcd164259c1d92bfb56a8b3210
-rw-r--r--saharaclient/osc/v1/data_sources.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/saharaclient/osc/v1/data_sources.py b/saharaclient/osc/v1/data_sources.py
index 060f779..99846f3 100644
--- a/saharaclient/osc/v1/data_sources.py
+++ b/saharaclient/osc/v1/data_sources.py
@@ -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',