We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e84b7b0 commit ca3fac7Copy full SHA for ca3fac7
python/plugins/processing/algs/saga/SagaUtils.py
@@ -166,8 +166,8 @@ def executeSaga(feedback):
166
if isWindows():
167
command = ['cmd.exe', '/C ', sagaBatchJobFilename()]
168
else:
169
- os.chmod(sagaBatchJobFilename(), stat.S_IEXEC
170
- | stat.S_IREAD | stat.S_IWRITE)
+ os.chmod(sagaBatchJobFilename(), stat.S_IEXEC |
+ stat.S_IREAD | stat.S_IWRITE)
171
command = ["'" + sagaBatchJobFilename() + "'"]
172
loglines = []
173
loglines.append(QCoreApplication.translate('SagaUtils', 'SAGA execution console output'))
0 commit comments