From f67e3f6b6ff3e708bcf813027555df7687b6b7fc Mon Sep 17 00:00:00 2001 From: Stepan Bahnik Date: Sat, 14 Mar 2015 21:55:15 +0100 Subject: [PATCH] fixed a minor bug --- Stuff/Modules/graphs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Stuff/Modules/graphs.py b/Stuff/Modules/graphs.py index 90550d1..a923a97 100644 --- a/Stuff/Modules/graphs.py +++ b/Stuff/Modules/graphs.py @@ -241,7 +241,7 @@ def distance(line): for strategy, periods in strategies.items(): if strategy == "immobile": continue - self.drawPeriods(periods, color = colors[strategy].replace("_", "").rstrip("14"), + self.drawPeriods(periods, color = colors[strategy].replace(" ", "").rstrip("14"), width = 240, toReturn = False) return self.returnPeriods()