This commit is contained in:
chriseth
2017-08-14 12:44:25 +02:00
parent 77b26552b1
commit bda410bb07
2 changed files with 8 additions and 1 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ string Whiskers::replace(
string tagName(_match[1]);
if (!tagName.empty())
{
assertThrow(_parameters.count(tagName), WhiskersError, "Tag " + tagName + " not found.");
assertThrow(_parameters.count(tagName), WhiskersError, "Value for tag " + tagName + " not provided.");
return _parameters.at(tagName);
}
else