Remove default=None when set value in config

Due to oslo.config update [1], the default argument
is set to None by default.

[1] http://docs.openstack.org/developer/oslo.config/api/oslo.config.cfg.html

TrivialFix

Change-Id: I935a9a05f1ad13810ee748b89a5ca63c189cd79d
This commit is contained in:
Duong Ha-Quang 2016-09-27 16:07:54 +07:00
parent 45f696cfe7
commit 61c02917f9

View File

@ -69,7 +69,7 @@ _CLI_OPTS = [
help='The distro type of the base image'),
cfg.StrOpt('base-tag', default='latest',
help='The base distro image tag'),
cfg.StrOpt('base-image', default=None,
cfg.StrOpt('base-image',
help='The base image name. Default is the same with base'),
cfg.BoolOpt('debug', short='d', default=False,
help='Turn on debugging log level'),