Fix userlist errors producing an unhelpful message

The parsing exception handler was producing a boost::too_many_args
exception.
This commit is contained in:
Oliver Hamlet
2016-12-14 18:25:23 +00:00
parent 59940a1e3a
commit 0ab8d4b073
+1 -1
View File
@@ -101,7 +101,7 @@ private:
"documentation, which is accessible through LOOT's main menu.\n\n"
"You can also seek support on LOOT's forum thread, which is "
"linked to on [LOOT's website](https://loot.github.io/)."
)) % e.what() % LootVersion::major % LootVersion::minor % LootVersion::patch).str()));
)) % e.what()).str()));
}
}
}