From 09b70436b3a0aae1fe24fdde6e8cdd7ee98d9c15 Mon Sep 17 00:00:00 2001 From: Brett Holman Date: Tue, 5 Dec 2023 16:40:03 -0700 Subject: [PATCH] fix(python3.13): Fix import error for passlib on Python 3.13 (#4669) --- cloudinit/sources/DataSourceAzure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/sources/DataSourceAzure.py b/cloudinit/sources/DataSourceAzure.py index 11c14e2001f..4c5780f767d 100644 --- a/cloudinit/sources/DataSourceAzure.py +++ b/cloudinit/sources/DataSourceAzure.py @@ -58,7 +58,7 @@ ) except (ImportError, AttributeError): try: - import passlib + import passlib.hash blowfish_hash = passlib.hash.sha512_crypt.hash except ImportError: