Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ewccli/commands/commons_infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ def check_user_ssh_keys(

# If still missing, raise exception
keys_exist = check_ssh_keys_exist(
ssh_private_key_path=ssh_private_key_path,
ssh_public_key_path=ssh_public_key_path
ssh_private_key_path=Path(ssh_private_key_path),
ssh_public_key_path=Path(ssh_public_key_path)
)

if not keys_exist:
Expand Down
Loading