From 38c5936fc9226955df00f43da33533ac28efa2b3 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Sun, 22 Jan 2012 12:57:26 -0800 Subject: [PATCH] Makekey cleanup. --- devstack/cfg.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/devstack/cfg.py b/devstack/cfg.py index 6950681f..e4a3aa24 100644 --- a/devstack/cfg.py +++ b/devstack/cfg.py @@ -78,8 +78,7 @@ class EnvConfigParser(ConfigParser.RawConfigParser): self.db_dsns = dict() def _makekey(self, section, option): - parts = [section, option] - return "/".join(parts) + return "/".join([str(section), str(option)]) def _resolve_special(self, section, option, value_gotten): if(value_gotten and len(value_gotten)):