From a1a7c2b43733388eb4690d020e1854b2016b7c3c Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Thu, 27 Feb 2020 13:18:39 -0800 Subject: [PATCH] fix update_ci_routes.py --- selfdrive/test/update_ci_routes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/test/update_ci_routes.py b/selfdrive/test/update_ci_routes.py index 207cc1b32e..9f90c5ea32 100755 --- a/selfdrive/test/update_ci_routes.py +++ b/selfdrive/test/update_ci_routes.py @@ -58,7 +58,7 @@ if __name__ == "__main__": # sync process replay routes for s in replay_segments: - route_name, _ = s.rsplit('--', 1) + route_name, _ = s[1].rsplit('--', 1) if not sync_to_ci_public(route_name): failed_routes.append(route_name)