diff --git a/munet/cli.py b/munet/cli.py index f64ce84..d273a30 100644 --- a/munet/cli.py +++ b/munet/cli.py @@ -759,6 +759,9 @@ async def remote_cli(unet, prompt, title, background, remote_wait=False): if remote_wait: wait_tmux = bool(os.getenv("TMUX", "")) wait_x11 = not wait_tmux and bool(os.getenv("DISPLAY", "")) + else: + wait_tmux = False + wait_x11 = False # Open a new window with a new CLI python_path = await unet.async_get_exec_path(["python3", "python"]) diff --git a/pyproject.toml b/pyproject.toml index 709d068..a415388 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "munet" -version = "0.14.14" +version = "0.14.15" description = "A package to facilitate network simulations" authors = ["Christian Hopps "] license = "GPL-2.0-or-later"