Skip to content

Commit d62e12d

Browse files
committed
Corrected Debug error
1 parent 2fa7b23 commit d62e12d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/Custom/PSCmdletExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ internal static class PSCmdletExtensions
2424
// Converts a string to its unescaped form. The method also replaces '+' with spaces.
2525
internal static string UnescapeString(this PSCmdlet cmdlet, string value)
2626
{
27-
WriteDebug(cmdlet, $"Unescaping string: {value}");
27+
cmdlet.WriteDebug($"Unescaping string: {value}");
2828
if (value == null)
2929
return null;
3030

0 commit comments

Comments
 (0)