Skip to content

Commit 4c65518

Browse files
committed
[processing] use os.path.join instead of + os.sep + (fix #3552)
(partially cherry-picked from 37951ba)
1 parent 62d1531 commit 4c65518

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/plugins/processing/algs/otb/OTBAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ def processAlgorithm(self, progress):
178178
path = OTBUtils.otbPath()
179179

180180
commands = []
181-
commands.append(path + os.sep + self.cliName)
181+
commands.append(os.path.join(path, self.cliName))
182182

183183
self.roiVectors = {}
184184
self.roiRasters = {}

0 commit comments

Comments
 (0)