Skip to content

Commit 23b5afb

Browse files
committedJun 19, 2013
Merge pull request #667 from yjacolin/gdalToolsdoPolygonBug
Update doPolygonize.py
2 parents 419d8ee + 5bcb0e1 commit 23b5afb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/GdalTools/tools/doPolygonize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def getArguments(self):
105105
arguments.append( outputFn )
106106
if outputFn:
107107
arguments.append( QFileInfo( outputFn ).baseName() )
108-
if self.fieldCheck.isChecked() and self.fieldEdit.text()):
108+
if (self.fieldCheck.isChecked() and self.fieldEdit.text()):
109109
arguments.append( self.fieldEdit.text() )
110110
return arguments
111111

0 commit comments

Comments
 (0)
Please sign in to comment.