Fixes bug 887278. The disk usage graph will now be drawn correctly.
Change-Id: I75cf87e409fefa701eea5019f2449757e55eba2f
This commit is contained in:
1 changed files with 1 additions and 1 deletions
@@ -262,7 +262,7 @@ def disk_usage(hosts):
lows.append(low)
averages.append(average)
for percent in stats[url]:
percents[percent] = percents.get(percent, 0) + 1
percents[int(percent)] = percents.get(int(percent), 0) + 1
else:
print "-> %s: Error. No drive info available." % url
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.