File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
python/plugins/sextante/modeler Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -519,14 +519,14 @@ def processAlgorithm(self, progress):
519
519
+ str (len (self .algs ) - len (self .deactivated )) + "]" )
520
520
outputs = {}
521
521
progress .setDebugInfo ("Parameters: " +
522
- ', ' .join ([str (p ).strip () + "=" + str (p .value ) for p in alg .parameters ]))
522
+ ', ' .join ([unicode (p ).strip () + "=" + unicode (p .value ) for p in alg .parameters ]))
523
523
t0 = time .time ()
524
524
alg .execute (progress )
525
525
dt = time .time () - t0
526
526
for out in alg .outputs :
527
527
outputs [out .name ] = out .value
528
528
progress .setDebugInfo ("Outputs: " +
529
- ', ' .join ([str (out ).strip () + "=" + str (outputs [out .name ]) for out in alg .outputs ]))
529
+ ', ' .join ([unicode (out ).strip () + "=" + unicode (outputs [out .name ]) for out in alg .outputs ]))
530
530
self .producedOutputs [iAlg ] = outputs
531
531
executed .append (iAlg )
532
532
progress .setDebugInfo ("OK. Execution took %0.3f ms (%i outputs)." % (dt , len (outputs )))
You can’t perform that action at this time.
0 commit comments