Skip to content

Commit

Permalink
fixed #5664 (problem with extent parameter)
Browse files Browse the repository at this point in the history
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@206 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
  • Loading branch information
volayaf committed Jun 1, 2012
1 parent d7c4247 commit cdb036d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sextante/parameters/ParameterExtent.py
Expand Up @@ -8,7 +8,7 @@ def __init__(self, name="", description="", default="0,1,0,1"):
self.value = None #The value is a string in the form "xmin, xmax, ymin, y max"

def setValue(self, text):
if value is None:
if text is None:
self.value = self.default
return True
tokens = text.split(",")
Expand Down

0 comments on commit cdb036d

Please sign in to comment.