From 48982eace8ce5db9d8307a20ba98a8432d70f103 Mon Sep 17 00:00:00 2001 From: Ben Clifford Date: Thu, 24 Oct 2024 12:33:27 +0000 Subject: [PATCH] Fix LocalChannel.execute_wait docstring on reporting errors --- parsl/channels/local/local.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/parsl/channels/local/local.py b/parsl/channels/local/local.py index 8a52b853d3..14dbf0405c 100644 --- a/parsl/channels/local/local.py +++ b/parsl/channels/local/local.py @@ -44,12 +44,9 @@ def execute_wait(self, cmd, walltime=None, envs={}): to override the envs set at channel initialization. Returns: - - retcode : Return code from the execution, -1 on fail + - retcode : Return code from the execution - stdout : stdout string - stderr : stderr string - - Raises: - None. ''' current_env = copy.deepcopy(self._envs) current_env.update(envs)