浏览代码

Fixing error message formatting

(useless string.Format and missing separator space)

Source commit: 7bd665cbb262ddba05ca02a18c6d35ce017aa451
Martin Prikryl 8 年之前
父节点
当前提交
e6ea601376
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dotnet/Session.cs

+ 1 - 1
dotnet/Session.cs

@@ -269,7 +269,7 @@ namespace WinSCP
                         Thread.Sleep(50);
 
                         CheckForTimeout(
-                            string.Format(CultureInfo.CurrentCulture, "WinSCP has not responded in time.") +
+                            "WinSCP has not responded in time. " +
                             logExplanation);
 
                     } while (!File.Exists(XmlLogPath));