Skip to content

Commit

Permalink
[processing] adopt to changes in extensions handling
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Nov 9, 2017
1 parent dc9f868 commit 13610f6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions python/plugins/processing/algs/saga/SagaAlgorithmProvider.py
Expand Up @@ -16,7 +16,6 @@
* *
***************************************************************************
"""
from builtins import str

__author__ = 'Victor Olaya'
__date__ = 'August 2012'
Expand Down Expand Up @@ -116,13 +115,13 @@ def name(self):
def id(self):
return 'saga'

def supportedOutputVectorLayerExtensions(self):
return ['shp']
def defaultVectorFileExtension(self, hasGeometry=True):
return 'shp'

def supportedOutputRasterLayerExtensions(self):
return ['sdat']
def defaultRasterFileExtension(self):
return 'sdat'

def getSupportedOutputTableLayerExtensions(self):
def supportedOutputTableExtensions(self):
return ['dbf']

def icon(self):
Expand Down

0 comments on commit 13610f6

Please sign in to comment.