add s to placeholder string

This commit is contained in:
pierce 2021-06-16 16:43:29 -04:00
parent bab166e2c1
commit a042309128
No known key found for this signature in database
GPG Key ID: 56C5D85ADAE7E476

View File

@ -442,7 +442,7 @@ class Placeholder(Composable):
def as_string(self, context):
if self._wrapped is not None:
return f"%({self._wrapped})"
return f"%({self._wrapped})s"
else:
return "%s"