opnsense-ports/sysutils/azure-agent/files/patch-azurelinuxagent_common_utils_textutil.py
Franco Fichtner 594e003644 sysutils/azure-agent: sync with upstream
Taken from: FreeBSD
2024-08-27 12:13:42 +02: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