Skip to content

Commit e80ef8e

Browse files
author
Matthew Fisher
committed
Merge pull request #1336 from deis/1326-container-config
fix(controller/registry): add old config vars
2 parents 96c95fd + 041e852 commit e80ef8e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/registry/private.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def _construct_env(env, config):
151151
if k in config:
152152
# update values defined by config
153153
v = config.pop(k)
154-
new_env.append("{}={}".format(k, v))
154+
new_env.append("{}={}".format(k, v))
155155
# add other config ENV items
156156
for k, v in config.items():
157157
new_env.append("{}={}".format(k, v))

0 commit comments

Comments
 (0)