Skip to content

Commit cdb036d

Browse files
author
volayaf
committed
fixed #5664 (problem with extent parameter)
git-svn-id: http://sextante.googlecode.com/svn/trunk/soft/bindings/qgis-plugin@206 881b9c09-3ef8-f3c2-ec3d-21d735c97f4d
1 parent d7c4247 commit cdb036d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sextante/parameters/ParameterExtent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def __init__(self, name="", description="", default="0,1,0,1"):
88
self.value = None #The value is a string in the form "xmin, xmax, ymin, y max"
99

1010
def setValue(self, text):
11-
if value is None:
11+
if text is None:
1212
self.value = self.default
1313
return True
1414
tokens = text.split(",")

0 commit comments

Comments
 (0)