Skip to content

Commit

Permalink
Update doPolygonize.py
Browse files Browse the repository at this point in the history
add missing '('.
  • Loading branch information
yjacolin committed Jun 19, 2013
1 parent 419d8ee commit 5bcb0e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/GdalTools/tools/doPolygonize.py
Expand Up @@ -105,7 +105,7 @@ def getArguments(self):
arguments.append( outputFn )
if outputFn:
arguments.append( QFileInfo( outputFn ).baseName() )
if self.fieldCheck.isChecked() and self.fieldEdit.text()):
if (self.fieldCheck.isChecked() and self.fieldEdit.text()):
arguments.append( self.fieldEdit.text() )
return arguments

Expand Down

0 comments on commit 5bcb0e1

Please sign in to comment.