From a55c22aaf65ada98dcf832693c8a35d17da482cf Mon Sep 17 00:00:00 2001 From: Zack Cerza Date: Fri, 7 Feb 2014 11:37:15 -0600 Subject: [PATCH] Work around a bug in ConfigParser Signed-off-by: Zack Cerza --- teuthology/task/devstack.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/task/devstack.py b/teuthology/task/devstack.py index d68092f847..df4ef21494 100644 --- a/teuthology/task/devstack.py +++ b/teuthology/task/devstack.py @@ -163,7 +163,7 @@ def update_devstack_config_files(devstack_node, secret_uuid): def update_config(config_name, config_stream, update_dict): parser = ConfigParser() - parser.read_file(config_stream, filename=config_name) + parser.read_file(config_stream) parser.update(update_dict) out_stream = StringIO() out_stream.seek(0) -- 2.39.5