From 56db344f875637ed8a645d8a4af324a686ed8f9d Mon Sep 17 00:00:00 2001 From: Jiri Otoupal Date: Wed, 22 Nov 2023 10:18:48 +0100 Subject: [PATCH] Display fix --- abst/__version__.py | 2 +- abst/cli_commands/parallel/commands.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/abst/__version__.py b/abst/__version__.py index 8327117..60caf65 100644 --- a/abst/__version__.py +++ b/abst/__version__.py @@ -10,7 +10,7 @@ "CLI Command making OCI Bastion and kubernetes usage simple and fast" ) -__version__ = "2.3.12" +__version__ = "2.3.13" __author__ = "Jiri Otoupal" __author_email__ = "jiri-otoupal@ips-database.eu" __license__ = "MIT" diff --git a/abst/cli_commands/parallel/commands.py b/abst/cli_commands/parallel/commands.py index 5b28b23..878b243 100644 --- a/abst/cli_commands/parallel/commands.py +++ b/abst/cli_commands/parallel/commands.py @@ -130,5 +130,8 @@ def get_set_dir(set_name): @click.argument("set_name", default=None, required=False, type=str) def display(debug, set_name): setup_calls(debug) - set_dir = get_set_dir(set_name) + if set_name: + set_dir = get_set_dir(set_name) + else: + set_dir = None display_scheduled(set_dir)