We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent f95db1c commit 70e2609Copy full SHA for 70e2609
src/sextante/outputs/OutputFactory.py
@@ -3,6 +3,7 @@
3
from sextante.outputs.OutputTable import OutputTable
4
from sextante.outputs.OutputVector import OutputVector
5
from sextante.outputs.OutputNumber import OutputNumber
6
+from sextante.outputs.OutputFile import OutputFile
7
8
class OutputFactory():
9
@@ -15,4 +16,4 @@ def getFromString(s):
15
16
if len(tokens) == 2:
17
return clazz(tokens[0], tokens[1])
18
else:
- return clazz(tokens[0], tokens[1], tokens[2]==str(True))
19
+ return clazz(tokens[0], tokens[1], tokens[2]==str(True))
0 commit comments