File tree 1 file changed +3
-0
lines changed
python/plugins/processing/script
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 49
49
from processing .outputs .OutputString import OutputString
50
50
from processing .outputs .OutputHTML import OutputHTML
51
51
from processing .outputs .OutputFile import OutputFile
52
+ from processing .outputs .OutputDirectory import OutputDirectory
52
53
from processing .outputs .OutputFactory import OutputFactory
53
54
from processing .script .WrongScriptException import WrongScriptException
54
55
@@ -204,6 +205,8 @@ def processParameterLine(self, line):
204
205
out = OutputHTML ()
205
206
elif tokens [1 ].lower ().strip ().startswith ('output file' ):
206
207
out = OutputFile ()
208
+ elif tokens [1 ].lower ().strip ().startswith ('output directory' ):
209
+ out = OutputDirectory ()
207
210
elif tokens [1 ].lower ().strip ().startswith ('output number' ):
208
211
out = OutputNumber ()
209
212
elif tokens [1 ].lower ().strip ().startswith ('output string' ):
You can’t perform that action at this time.
0 commit comments