Skip to content

Commit cedfaa7

Browse files
arunekonyalldawson
authored andcommittedSep 5, 2018
fix hasYMax variable
1 parent 30059e6 commit cedfaa7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/qgis/VoronoiPolygons.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ def clip_line(x1, y1, x2, y2, w, h):
404404
if hasYMin:
405405
bndpoints.append(QgsPointXY(width + extent.xMinimum(),
406406
extent.yMinimum()))
407-
elif HasYMax:
407+
elif hasYMax:
408408
bndpoints.append(QgsPointXY(width + extent.xMinimum(),
409409
height + extent.yMinimum()))
410410
if pt_y == ymin: # lowest point

0 commit comments

Comments
 (0)
Please sign in to comment.