From 8268b3363584d90c2f2a67ebab1193b1b21418de Mon Sep 17 00:00:00 2001 From: James Falcon Date: Mon, 5 Aug 2024 14:58:34 -0500 Subject: [PATCH] chore: Fix log message in url_helper.py --- cloudinit/url_helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/url_helper.py b/cloudinit/url_helper.py index d409e322858..eb2442993b5 100644 --- a/cloudinit/url_helper.py +++ b/cloudinit/url_helper.py @@ -739,7 +739,7 @@ def read_url_handle_exceptions( time_taken = int(time.monotonic() - start_time) max_wait_str = "%ss" % max_wait if max_wait else "unlimited" status_msg = "Calling '%s' failed [%s/%s]: %s" % ( - url or getattr(url_exc, "url", "url ? None"), + url or getattr(url_exc, "url", "url"), time_taken, max_wait_str, reason,