mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
9 lines
214 B
Python
9 lines
214 B
Python
|
from sextante.outputs.Output import Output
|
||
|
|
||
|
class OutputHTML(Output):
|
||
|
|
||
|
def getFileFilter(self,alg):
|
||
|
return "HTML files(*.html)"
|
||
|
|
||
|
def getDefaultFileExtension(self, alg):
|
||
|
return "html"
|