Skip to content
This repository was archived by the owner on Jul 22, 2023. It is now read-only.

Commit f66697d

Browse files
committed
Add StackTrace of C# exception
1 parent 7140fd0 commit f66697d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtime/pythonexception.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public override string Message
136136
/// </remarks>
137137
public override string StackTrace
138138
{
139-
get { return _tb; }
139+
get { return _tb + base.StackTrace; }
140140
}
141141

142142
/// <summary>

0 commit comments

Comments
 (0)