diff options
Diffstat (limited to 'gn3/commands.py')
-rw-r--r-- | gn3/commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/commands.py b/gn3/commands.py index 5770902..9684eeb 100644 --- a/gn3/commands.py +++ b/gn3/commands.py @@ -111,5 +111,5 @@ def run_async_cmd( """A utility function to call `gn3.commands.queue_cmd` function and run the worker in the `one-shot` mode.""" cmd_id = queue_cmd(conn, job_queue, cmd, email, env) - subprocess.Popen(["python3", "sheepdog/worker.py"]) + subprocess.Popen(["python3", "sheepdog/worker.py"]) # pylint: disable=[consider-using-with] return cmd_id |