We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f6918d5 + 44f796f commit f51a6f6Copy full SHA for f51a6f6
Python/Product/VSCommon/Infrastructure/TaskDialog.cs
@@ -58,7 +58,7 @@ public static TaskDialog ForException(
58
EnableHyperlinks = true,
59
CollapsedControlText = "Show &details",
60
ExpandedControlText = "Hide &details",
61
- ExpandedInformation = exception.ToString()
+ ExpandedInformation = "```{0}{1}{0}```".FormatUI(Environment.NewLine, exception)
62
};
63
td.Buttons.Add(TaskDialogButton.Close);
64
if (!string.IsNullOrEmpty(issueTrackerUrl)) {
0 commit comments