diff options
author | zhihui wu <wu.zhihui1@zte.com.cn> | 2016-11-08 08:54:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2016-11-08 08:54:18 +0000 |
commit | 3dff5b4dc848147235120f7befd5b5de29461846 (patch) | |
tree | addcfe8851d6ae9616bb35cf477becd0f79e800c /func | |
parent | a59b5ea6fa221538ae84013a76ae2ae9de85ad44 (diff) | |
parent | 773abe961b1f4e5a8eb76058f90c628b66b1ad4b (diff) |
Merge "Move a process file ips.log to /home/opnfv/qtip/"
Diffstat (limited to 'func')
-rw-r--r-- | func/env_setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/func/env_setup.py b/func/env_setup.py index 6027f904..e9f9cd2a 100644 --- a/func/env_setup.py +++ b/func/env_setup.py @@ -113,8 +113,7 @@ class Env_setup: (installer_type, installer_ip) logger.info(cmd) os.system(cmd) - home = expanduser("~") - with open(home + "/ips.log", "r") as file: + with open(expanduser('~') + "/qtip/ips.log", "r") as file: data = file.read() if data: ips.extend(data.rstrip('\n').split('\n')) |