summaryrefslogtreecommitdiffstats
path: root/bin/make_graph.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-01-04 11:19:13 +0100
committerHolger Levsen <holger@layer-acht.org>2015-01-04 11:19:13 +0100
commit0a0c1b5aa4c9c3139f28f0e5eea8a7b0b1cf2da2 (patch)
treeeddf80bc53c4c82c97a034716101ea3236ef1dad /bin/make_graph.py
parent37b33e51e0393c2b2d519235be72a7db776cdc2c (diff)
downloadjenkins.debian.net-0a0c1b5aa4c9c3139f28f0e5eea8a7b0b1cf2da2.tar.xz
reproducible: track new usertag: buildinfo
Diffstat (limited to 'bin/make_graph.py')
-rwxr-xr-xbin/make_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/make_graph.py b/bin/make_graph.py
index 99866fc5..70e02adc 100755
--- a/bin/make_graph.py
+++ b/bin/make_graph.py
@@ -35,14 +35,14 @@ def main():
"#fcaf3e", "#ce5c00", "#ad7fa8", "#5c3566", \
"#e9b96e", "#8f5902", "#8ae234", "#4e9a06", \
"#729fcf", "#204a87", "#ef2929", "#a40000", \
- "#888a85", "#2e3436"))')
+ "#888a85", "#2e3436", "#75507b", "#cc0000"))')
r('v <- t[0:nrow(t),0:'+colors+']')
# make graph since day 1
r('barplot(t(v),col = 1:'+columns+', main="'+mainlabel+'", xlab="", ylab="'+ylabel+'", space=0, border=NA)')
if int(colors) < 10:
r('legend(x="bottom",legend=colnames(t), ncol=2,fill=1:'+columns+',xjust=0.5,yjust=0,bty="n")')
else:
- r('legend(x="bottom",legend=colnames(t), ncol=9,fill=1:'+columns+',xjust=0.5,yjust=0,bty="n")')
+ r('legend(x="bottom",legend=colnames(t), ncol=10,fill=1:'+columns+',xjust=0.5,yjust=0,bty="n")')
grdevices.dev_off()
if __name__ == "__main__":