diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/make_graph.py | 2 | ||||
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/bin/make_graph.py b/bin/make_graph.py index 83f71aa8..66554117 100755 --- a/bin/make_graph.py +++ b/bin/make_graph.py @@ -28,7 +28,7 @@ def main(): r('t <- (read.table("'+countsfile+'",sep=",",header=1,row.names=1))') r('cname <- c("date",rep(colnames(t)))') # thanks to http://tango.freedesktop.org/Generic_Icon_Theme_Guidelines for those nice colors - if int(colors) < 9: + if int(colors) < 6: r('palette(c("#4e9a06", "#f57900", "#cc0000", "#2e3436", "#888a85"))') else: r('palette(c("#fce94f", "#c4a000", "#eeeeec", "#babdb6", \ diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 6d0108a7..fa938b3f 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -191,8 +191,8 @@ done FIELDS[4]="datum, packages_with_notes" FIELDS[5]="datum, known_issues" FIELDS[6]="datum, reproducible, unreproducible, FTBFS, other" -COLOR[0]=9 -COLOR[1]=4 +COLOR[0]=5 +COLOR[1]=8 COLOR[2]=3 COLOR[3]=28 COLOR[4]=1 |