From eca2636e0869e53fa6a97c382ade409f0d859969 Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Thu, 3 Mar 2022 12:04:17 +0100 Subject: [PATCH] Fixed int to str --- swash/processing/swash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swash/processing/swash.py b/swash/processing/swash.py index bcf9244..aa36c31 100644 --- a/swash/processing/swash.py +++ b/swash/processing/swash.py @@ -29,7 +29,7 @@ with tempfile.TemporaryDirectory(prefix="swash_", dir=".") as tmp_raw: tmpdir = pathlib.Path(tmp_raw) if config.has_option("swash", "mpi"): - mpi = ("-mpi", config.getint("swash", "mpi")) + mpi = ("-mpi", config.get("swash", "mpi")) else: mpi = ()