From c82ba61e339882a5af10b1052edc0348e16119f4 Mon Sep 17 00:00:00 2001 From: Kyle Gerard Felker Date: Mon, 16 Dec 2019 13:09:46 -0600 Subject: [PATCH] Fix intentional style error Travis CI email notifications occurs only for changed/failed builds on master, not PRs --- plasma/global_vars.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plasma/global_vars.py b/plasma/global_vars.py index 68e5ce8f..a07b0d7e 100644 --- a/plasma/global_vars.py +++ b/plasma/global_vars.py @@ -13,7 +13,7 @@ def init_MPI(): from mpi4py import MPI - global comm, task_index, num_workers# + global comm, task_index, num_workers comm = MPI.COMM_WORLD task_index = comm.Get_rank() num_workers = comm.Get_size()