aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--crosperf/experiment_factory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/crosperf/experiment_factory.py b/crosperf/experiment_factory.py
index 0689d033..e04f93f5 100644
--- a/crosperf/experiment_factory.py
+++ b/crosperf/experiment_factory.py
@@ -269,7 +269,7 @@ class ExperimentFactory(object):
for line in f:
key, v = line.split(':')
if key.strip() == board:
- remotes = v.strip().split(' ')
+ remotes = v.strip().split()
if remotes:
return remotes
else: