Skip to content

Commit d147495

Browse files
committed
gdaltools: fix syntax error (follow edd0cdd)
1 parent dd406dc commit d147495

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/plugins/GdalTools/tools/GdalTools_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -822,7 +822,7 @@ def setProcessEnvironment(process):
822822
envval = os.getenv(name)
823823
if envval == None or envval == "":
824824
envval = str(val)
825-
elif (platform.system() == "Windows" and val.lower() not in envval.lower().split( sep )) or
825+
elif (platform.system() == "Windows" and val.lower() not in envval.lower().split( sep )) or \
826826
(platform.system() != "Windows" and val not in envval.split( sep )):
827827
envval += "%s%s" % (sep, str(val))
828828
else:

0 commit comments

Comments
 (0)