From f5ed98dcd7a6ae8bc57351a4416e66f105182012 Mon Sep 17 00:00:00 2001 From: lthievenaz-keeper Date: Thu, 6 Aug 2026 11:29:33 +0100 Subject: [PATCH] Correct library name for Azure import If azure modules are not loaded, we incorrectly suggest running: `pip install keeper-commander[azure]` But the correct library name is `keepercommander[azure]` --- keepercommander/commands/azure_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keepercommander/commands/azure_import.py b/keepercommander/commands/azure_import.py index fc09c4a02..47febfa58 100644 --- a/keepercommander/commands/azure_import.py +++ b/keepercommander/commands/azure_import.py @@ -75,7 +75,7 @@ def _get_credential(tenant_id, client_id, client_secret): except ImportError: raise CommandError( 'azure-secrets-import', - 'azure-identity is required. Install it with: pip install keeper-commander[azure]' + 'azure-identity is required. Install it with: pip install keepercommander[azure]' ) if tenant_id and client_id and client_secret: @@ -110,7 +110,7 @@ def _make_client(vault_name, credential): except ImportError: raise CommandError( 'azure-secrets-import', - 'azure-keyvault-secrets is required. Install it with: pip install keeper-commander[azure]' + 'azure-keyvault-secrets is required. Install it with: pip install keepercommander[azure]' ) vault_url = f'https://{vault_name}.vault.azure.net/' return SecretClient(vault_url=vault_url, credential=credential)