Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
fixing bug #499945
Browse files Browse the repository at this point in the history
  • Loading branch information
cdavis committed Dec 31, 2009
1 parent 395d331 commit eb0242d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/graphite/render/glyph.py
Expand Up @@ -535,7 +535,7 @@ def setupYAxis(self):

yVariance = yMaxValue - yMinValue

if yVariance == 0:
if math.floor(yVariance) == 0:
yVariance = 1
yMaxValue = yMinValue + 1

Expand Down

0 comments on commit eb0242d

Please sign in to comment.