We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd406dc commit d147495Copy full SHA for d147495
python/plugins/GdalTools/tools/GdalTools_utils.py
@@ -822,7 +822,7 @@ def setProcessEnvironment(process):
822
envval = os.getenv(name)
823
if envval == None or envval == "":
824
envval = str(val)
825
- elif (platform.system() == "Windows" and val.lower() not in envval.lower().split( sep )) or
+ elif (platform.system() == "Windows" and val.lower() not in envval.lower().split( sep )) or \
826
(platform.system() != "Windows" and val not in envval.split( sep )):
827
envval += "%s%s" % (sep, str(val))
828
else:
0 commit comments