summaryrefslogtreecommitdiffstats
path: root/func/env_setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'func/env_setup.py')
-rw-r--r--func/env_setup.py3
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'))