DBG: stringformat fix

This commit is contained in:
mrexodia 2016-06-25 19:29:13 +02:00
parent 5532333101
commit 0370886aad
No known key found for this signature in database
GPG Key ID: D72F9A4FAA0073B4

View File

@ -161,6 +161,8 @@ String stringformat(String format, const FormatValueVector & values)
}
if(inFormatter && formatString.size())
output += handleFormatString(formatString, values);
else if(inFormatter)
output += "{";
return output;
}