Skip to content

Commit

Permalink
[processing] fix execution of SAGA algorithms under macos
Browse files Browse the repository at this point in the history
  • Loading branch information
slarosa committed Feb 17, 2018
1 parent f31ba78 commit 4c95b6b
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 4c95b6b

Please sign in to comment.