Skip to content

Commit a5ddf92

Browse files
committedFeb 9, 2016
Merge pull request #2770 from NaturalGIS/processing_fix_ogr_convert_format
[processing] fix OGR/Convert format tool
2 parents 41ac88a + 24ce6d2 commit a5ddf92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/gdal/ogr2ogr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def getConsoleCommands(self):
124124
outFile += ext
125125
output.value = outFile
126126

127-
output = self.ogrConnectionString(outFile)
127+
output = ogrConnectionString(outFile)
128128
options = unicode(self.getParameterValue(self.OPTIONS))
129129

130130
if outFormat == 'SQLite' and os.path.isfile(output):

0 commit comments

Comments
 (0)
Please sign in to comment.