From d56d68200678f5c232b757243d8747bcb73f117a Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Wed, 8 May 2019 09:47:19 +0100 Subject: [PATCH] Correct colour for the SF communication tasks in the dependency graph script. --- tools/plot_task_dependencies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/plot_task_dependencies.py b/tools/plot_task_dependencies.py index 608a00562d..b835b04261 100644 --- a/tools/plot_task_dependencies.py +++ b/tools/plot_task_dependencies.py @@ -162,7 +162,7 @@ def taskIsStars(name): """ if "stars" in name or "spart" in name: return True - if "sf_counts" in name: + if "sf_count" in name: return True return False -- GitLab