scripts/pkgbuilder.py: use distinct colours

This commit is contained in:
MilhouseVH 2020-01-17 15:07:07 +00:00
parent 3e1497b98d
commit d4392ee718

View File

@ -283,8 +283,8 @@ class Builder:
self.color_code["DONE"] = "\033[0;32m" #green self.color_code["DONE"] = "\033[0;32m" #green
self.color_code["FAIL"] = "\033[1;31m" #bold red self.color_code["FAIL"] = "\033[1;31m" #bold red
self.color_code["ACTV"] = "\033[0;33m" #yellow self.color_code["ACTV"] = "\033[0;33m" #yellow
self.color_code["IDLE"] = "\033[0;33m" #yellow self.color_code["IDLE"] = "\033[0;35m" #magenta
self.color_code["INIT"] = "\033[0;33m" #yellow self.color_code["INIT"] = "\033[0;36m" #cyan
self.work = queue.Queue() self.work = queue.Queue()
self.complete = queue.Queue() self.complete = queue.Queue()