Merge "Remove default=None when set value in config"

This commit is contained in:
Jenkins 2016-10-19 16:55:11 +00:00 committed by Gerrit Code Review
commit c3ae6f5d82

View File

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