Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbruy committed Jun 22, 2016
1 parent e4c1d89 commit acc8274
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion python/plugins/processing/algs/gdal/GdalUtils.py
Expand Up @@ -150,7 +150,6 @@ def getVectorDriverFromFileName(filename):

formats = QgsVectorFileWriter.supportedFiltersAndFormats()
for k, v in formats.iteritems():
print k, v
if ext in k:
return v
return 'ESRI Shapefile'
Expand Down
2 changes: 0 additions & 2 deletions python/plugins/processing/algs/gdal/contour.py
Expand Up @@ -72,7 +72,6 @@ def defineCharacteristics(self):

def getConsoleCommands(self):
output = self.getOutputValue(self.OUTPUT_VECTOR)
print 'OUTPUT', output
interval = unicode(self.getParameterValue(self.INTERVAL))
fieldName = unicode(self.getParameterValue(self.FIELD_NAME))
extra = self.getParameterValue(self.EXTRA)
Expand All @@ -87,7 +86,6 @@ def getConsoleCommands(self):
arguments.append(interval)

driver = GdalUtils.getVectorDriverFromFileName(output)
print 'DRIVER', driver
arguments.append('-f')
arguments.append(driver)

Expand Down

0 comments on commit acc8274

Please sign in to comment.