10000 Use Console.WriteLine formatting overload · pythonnet/pythonnet@38ea0b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 38ea0b6

Browse files
committed
Use Console.WriteLine formatting overload
Addresses comment: #958
1 parent 0077ea8 commit 38ea0b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/embed_tests/TestDomainReload.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -542,7 +542,7 @@ public static void RunPython()
542542
{
543543
AppDomain.CurrentDomain.DomainUnload += OnDomainUnload;
544544
string name = AppDomain.CurrentDomain.FriendlyName;
545-
Console.WriteLine(string.Format("[{0} in .NET] In PythonRunner.RunPython", name));
545+
Console.WriteLine("[{0} in .NET] In PythonRunner.RunPython", name);
546546
var mode = PythonEngine.DefaultShutdownMode;
547547
if (mode == ShutdownMode.Normal)
548548
{

0 commit comments

Comments
 (0)
0