messed up indentation

This commit is contained in:
Martin A. Brown 2016-02-29 11:37:13 -08:00
parent 40bcabbe79
commit fa73f93080
1 changed files with 1 additions and 1 deletions

View File

@ -174,7 +174,7 @@ def dict_from_envdict(env=os.environ, base=None, envsep=ENVSEP, clisep=CLISEP):
for k, v in env.items():
if k.startswith(tag):
k = k.lower().replace(envsep, clisep)
d[k] = str(v)
d[k] = str(v)
return d