Any argument that did not contain a placeholder would simply be appended as is, but this would cause escaped curly braces not to be resolved. The solution is to just call argument.format() in this case, letting the string formatter take care of resolving the escaped characters.
Fixes #101
Any argument that did not contain a placeholder would simply be appended as is, but this would cause escaped curly braces not to be resolved. The solution is to just call
argument.format()
in this case, letting the string formatter take care of resolving the escaped characters.