Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/saga/SagaUtils.py
Expand Up @@ -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(
Expand Down

0 comments on commit 131efbd

Please sign in to comment.