File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
python/plugins/processing/algs Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,8 +89,8 @@ def grassPath():
89
89
folder = ProcessingConfig .getSetting (GrassUtils .GRASS_FOLDER )
90
90
if folder is None :
91
91
if isWindows ():
92
- if "OSGEO4W_ROOT" in environ :
93
- testfolder = os .path .join (unicode (environ ['OSGEO4W_ROOT' ]), "apps" , "grass" )
92
+ if "OSGEO4W_ROOT" in os . environ :
93
+ testfolder = os .path .join (unicode (os . environ ['OSGEO4W_ROOT' ]), "apps" , "grass" )
94
94
else :
95
95
testfolder = unicode (QgsApplication .prefixPath ())
96
96
testfolder = os .path .join (testfolder , 'grass' )
Original file line number Diff line number Diff line change @@ -87,8 +87,8 @@ def grassPath():
87
87
folder = ProcessingConfig .getSetting (Grass7Utils .GRASS_FOLDER )
88
88
if folder is None :
89
89
if isWindows ():
90
- if "OSGEO4W_ROOT" in environ :
91
- testfolder = os .path .join (unicode (environ ['OSGEO4W_ROOT' ]), "apps" , "grass" )
90
+ if "OSGEO4W_ROOT" in os . environ :
91
+ testfolder = os .path .join (unicode (os . environ ['OSGEO4W_ROOT' ]), "apps" , "grass" )
92
92
else :
93
93
testfolder = unicode (QgsApplication .prefixPath ())
94
94
testfolder = os .path .join (testfolder , 'grass' )
You can’t perform that action at this time.
0 commit comments