From 0efa67ba46a1ce4301c04111f95bff38f002cc1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=B3=E9=98=B3?= <260893248@qq.com> Date: Fri, 14 Jul 2017 19:08:29 +0800 Subject: [PATCH] fix small typo fix one typo (from 'itsself' to 'itself') --- env_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env_check.py b/env_check.py index 406f42e48d9..c6407432d6e 100644 --- a/env_check.py +++ b/env_check.py @@ -15,7 +15,7 @@ conffilename = os.path.join(confdir, conffile) # Set the variable conffilename by joining confdir and conffile together for env_check in open(conffilename): # Open the config file and read all the settings - env_check = env_check.strip() # Set the variable as itsself, but strip the extra text out + env_check = env_check.strip() # Set the variable as itself, but strip the extra text out print '[{}]'.format(env_check) # Format the Output to be in Square Brackets newenv = os.getenv(env_check) # Set the variable newenv to get the settings from the OS what is currently set for the settings out the configfile