Skip to content

Commit 3c7a680

Browse files
committedMar 27, 2014
[processing] fixed exporting model to python (replaced 'Processing' reference with 'processing')
1 parent ad6d2b4 commit 3c7a680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/modeler/SaveAsPythonScriptAction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def translateToPythonCode(self, model):
7777
iMultiple = 0
7878
for alg in model.algs:
7979
multiple = []
80-
runline = 'outputs_' + str(i) + '=Processing.runalg("' \
80+
runline = 'outputs_' + str(i) + '=processing.runalg("' \
8181
+ alg.commandLineName() + '"'
8282
for param in alg.parameters:
8383
aap = model.algParameters[i][param.name]

0 commit comments

Comments
 (0)
Please sign in to comment.