Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac3eb7a

Browse files
authoredMar 22, 2019
Update SagaUtils.py
1 parent a12dd17 commit ac3eb7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎python/plugins/processing/algs/saga/SagaUtils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,8 +166,8 @@ def executeSaga(feedback):
166166
if isWindows():
167167
command = ['cmd.exe', '/C ', sagaBatchJobFilename()]
168168
else:
169-
os.chmod(sagaBatchJobFilename(), stat.S_IEXEC
170-
| stat.S_IREAD | stat.S_IWRITE)
169+
os.chmod(sagaBatchJobFilename(), stat.S_IEXEC |
170+
stat.S_IREAD | stat.S_IWRITE)
171171
command = ["'" + sagaBatchJobFilename() + "'"]
172172
loglines = []
173173
loglines.append(QCoreApplication.translate('SagaUtils', 'SAGA execution console output'))

0 commit comments

Comments
 (0)
Please sign in to comment.