roll back the bug-fix for source method
[bottlenecks.git] / utils / env_prepare / stack_prepare.py
index 5de6218..c1604f4 100644 (file)
@@ -44,7 +44,7 @@ def _prepare_env_daemon(test_yardstick):
                             file_after)
         docker_env.docker_exec_cmd(yardstick_contain,
                                    cmd)
-        cmd = "sed -i '13s/http/file/g' /etc/yardstick/yardstick.conf"
+        cmd = "sed -i '12s/http/file/g' /etc/yardstick/yardstick.conf"
         docker_env.docker_exec_cmd(yardstick_contain,
                                    cmd)
 
@@ -83,7 +83,8 @@ def _source_file(rc_file):
     p = subprocess.Popen(". %s; env" % rc_file, stdout=subprocess.PIPE,
                          shell=True)
     output = p.communicate()[0]
-    env = dict((line.split('=', 1) for line in output.splitlines()))
+    output_lines = output.splitlines()
+    env = dict((line.split('=', 1) for line in output_lines))
     os.environ.update(env)
     return env