From 61c02917f9b71c4bb44dba8d2140654b5f7f4921 Mon Sep 17 00:00:00 2001
From: Duong Ha-Quang <duonghq@vn.fujitsu.com>
Date: Tue, 27 Sep 2016 16:07:54 +0700
Subject: [PATCH] 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
---
 kolla/common/config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kolla/common/config.py b/kolla/common/config.py
index 94b4cc1c87..0f4bccd2c7 100644
--- a/kolla/common/config.py
+++ b/kolla/common/config.py
@@ -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'),