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