From 5c6e1e77c16ec21e59349f212a0d280b696b0c94 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Tue, 14 Jul 2015 23:43:35 +0100 Subject: [PATCH] Fixed a trailing space in a message. --- src/backend/game/game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/game/game.cpp b/src/backend/game/game.cpp index 51dbd944..5fd263a3 100644 --- a/src/backend/game/game.cpp +++ b/src/backend/game/game.cpp @@ -154,7 +154,7 @@ namespace loot { catch (exception &e) { BOOST_LOG_TRIVIAL(error) << plugin.first->second.Name() << ": Exception occurred: " << e.what(); Plugin p; - p.Messages(list(1, Message(Message::error, lc::translate("An exception occurred while loading this plugin. Details: ").str() + " " + e.what()))); + p.Messages(list(1, Message(Message::error, lc::translate("An exception occurred while loading this plugin. Details:").str() + " " + e.what()))); plugin.first->second = p; } }));