Skip to content

Commit

Permalink
[processing] use os.path.join instead of + os.sep + (fix #3552)
Browse files Browse the repository at this point in the history
(partially cherry-picked from 37951ba)
  • Loading branch information
alexbruy committed May 24, 2017
1 parent 62d1531 commit 4c65518
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/otb/OTBAlgorithm.py
Expand Up @@ -178,7 +178,7 @@ def processAlgorithm(self, progress):
path = OTBUtils.otbPath()

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

self.roiVectors = {}
self.roiRasters = {}
Expand Down

0 comments on commit 4c65518

Please sign in to comment.