Fix double period in error message.

This commit is contained in:
Oliver Hamlet
2015-07-16 13:36:06 +01:00
parent 474558d1f4
commit 9a040459f8
+1 -1
View File
@@ -51,7 +51,7 @@ namespace loot {
regexPlugins.push_back(plugin);
else {
if (!plugins.insert(plugin).second)
throw error(error::path_read_fail, "More than one entry exists for \"" + plugin.Name() + "\".");
throw error(error::path_read_fail, "More than one entry exists for \"" + plugin.Name() + "\"");
}
}
}