diff --git a/saharaclient/osc/v1/data_sources.py b/saharaclient/osc/v1/data_sources.py index 060f7793..99846f3d 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="", - help="Url for the data source [REQUIRED]", + help="URL for the data source [REQUIRED]", required=True ) parser.add_argument( '--username', metavar="", - help="Username for accessing the data source url" + help="Username for accessing the data source URL" ) parser.add_argument( '--password', metavar="", - 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="", - help="Url for the data source" + help="URL for the data source" ) parser.add_argument( '--username', metavar="", - help="Username for accessing the data source url" + help="Username for accessing the data source URL" ) parser.add_argument( '--password', metavar="", - help="Password for accessing the data source url" + help="Password for accessing the data source URL" ) parser.add_argument( '--description',