From d1db675af53dcf18b03335a1065e4c120ffe2782 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Mail=C3=A4nder?= Date: Wed, 8 Jul 2015 17:05:55 +0200 Subject: [PATCH] fix the linter not printing any helpful stacktraces (doh!) --- OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs b/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs index 73da3275fa..30922a8537 100644 --- a/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs +++ b/OpenRA.Mods.Common/UtilityCommands/CheckYaml.cs @@ -77,7 +77,7 @@ namespace OpenRA.Mods.Common.UtilityCommands } catch (Exception e) { - EmitError("{0} failed with exception: {0}".F(customPassType, e)); + EmitError("{0} failed with exception: {1}".F(customPassType, e)); } } }