support/graph-size: don't report "Others" if size is zero

Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas De Schampheleire <thomas.de_schampheleire@nokia.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
This commit is contained in:
Yann E. MORIN 2019-08-17 19:18:24 +02:00 committed by Arnout Vandecappelle (Essensium/Mind)
parent a2d20ca613
commit c68ee73924

View File

@ -137,8 +137,9 @@ def draw_graph(pkgsize, outputf):
else:
labels.append("%s (%d kB)" % (p, sz / 1000.))
values.append(sz)
labels.append("Other (%d kB)" % (other_value / 1000.))
values.append(other_value)
if other_value != 0:
labels.append("Other (%d kB)" % (other_value / 1000.))
values.append(other_value)
plt.figure()
patches, texts, autotexts = plt.pie(values, labels=labels,