ports/sysutils/azure-agent/files/patch-azurelinuxagent_common_utils_textutil.py
Li-Wen Hsu 602d71fcad
sysutils/azure-agent: Fix run with python 3.10+
Approved by:	maintainer (implicitly)
Sponsored by:	The FreeBSD Foundation
2024-08-21 10:58:25 +08:00

11 lines
508 B
Python

--- azurelinuxagent/common/utils/textutil.py.orig 2024-08-20 23:23:16 UTC
+++ azurelinuxagent/common/utils/textutil.py
@@ -445,7 +445,7 @@ def format_exception(exception):
if tb is None or (sys.version_info[0] == 2 and e != exception):
msg += "[Traceback not available]"
else:
- msg += ''.join(traceback.format_exception(etype=type(exception), value=exception, tb=tb))
+ msg += ''.join(traceback.format_exception(type(exception), value=exception, tb=tb))
return msg