Skip to content
Permalink
Browse files
Merge pull request #6367 from slarosa/fix_saga_osx
[processing] fix execution of SAGA algorithms under macos
  • Loading branch information
alexbruy committed Feb 23, 2018
2 parents f93dc90 + 4c95b6b commit 131efbd
Showing 1 changed file with 1 addition and 1 deletion.
@@ -169,7 +169,7 @@ def executeSaga(feedback):
else:
os.chmod(sagaBatchJobFilename(), stat.S_IEXEC |
stat.S_IREAD | stat.S_IWRITE)
command = [sagaBatchJobFilename()]
command = ["'" + sagaBatchJobFilename() + "'"]
loglines = []
loglines.append(QCoreApplication.translate('SagaUtils', 'SAGA execution console output'))
with subprocess.Popen(

0 comments on commit 131efbd

Please sign in to comment.