From 4a15ea367febbcfca5a43e38614bc0d749ac1467 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 7 Nov 2014 07:45:31 -0800 Subject: [PATCH] Fix class constant indentation Change-Id: I275a579c2236816649dbced5bf55e47065d25a84 --- oslo/config/types.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oslo/config/types.py b/oslo/config/types.py index ef4a52be..9b646e25 100644 --- a/oslo/config/types.py +++ b/oslo/config/types.py @@ -82,7 +82,7 @@ class String(ConfigType): class MultiString(String): - BASE_TYPES = six.string_types + (list,) + BASE_TYPES = six.string_types + (list,) class Boolean(ConfigType):