Fixed a trailing space in a message.

This commit is contained in:
Oliver Hamlet
2015-07-14 23:43:35 +01:00
parent da37a5745a
commit 5c6e1e77c1
+1 -1
View File
@@ -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<Message>(1, Message(Message::error, lc::translate("An exception occurred while loading this plugin. Details: ").str() + " " + e.what())));
p.Messages(list<Message>(1, Message(Message::error, lc::translate("An exception occurred while loading this plugin. Details:").str() + " " + e.what())));
plugin.first->second = p;
}
}));