Makekey cleanup.

This commit is contained in:
Joshua Harlow
2012-01-22 12:57:26 -08:00
parent 6c88ff066b
commit 38c5936fc9

View File

@@ -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)):