Skip to content

Commit

Permalink
Display fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiri Otoupal committed Nov 22, 2023
1 parent cff15b0 commit 56db344
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion abst/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
5 changes: 4 additions & 1 deletion abst/cli_commands/parallel/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit 56db344

Please sign in to comment.