mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 23:00:30 -04:00
11 lines
508 B
Python
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
|
|
|