File tree 1 file changed +1
-4
lines changed
1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
2
from PyQt4 import QtGui
3
- from sextante .parameters .ParameterString import ParameterString
4
3
from sextante .lastools .LasToolsUtils import LasToolsUtils
5
- from sextante .parameters .ParameterBoolean import ParameterBoolean
6
- from sextante .outputs .OutputRaster import OutputRaster
7
4
from sextante .lastools .LasToolsAlgorithm import LasToolsAlgorithm
8
5
from sextante .parameters .ParameterSelection import ParameterSelection
9
6
from sextante .parameters .ParameterFile import ParameterFile
@@ -31,7 +28,7 @@ def processAlgorithm(self, progress):
31
28
commands .append (self .getParameterValue (lasground .INPUT ))
32
29
commands .append ("-o" )
33
30
commands .append (self .getOutputValue (lasground .OUTPUT ))
34
- method = lasground . METHODS [ self .getParameterValue (lasground .METHOD )]
31
+ method = self .getParameterValue (lasground .METHOD )
35
32
if method != 0 :
36
33
commands .append ("-" + lasground .METHODS [method ])
37
34
self .addCommonParameterValuesToCommand (commands )
You can’t perform that action at this time.
0 commit comments