This commit is contained in:
Collin Winter 2007-08-29 23:37:10 +00:00
parent 98e0d4c61c
commit e0281cab81

View file

@ -231,6 +231,7 @@ def vformat(self, format_string, args, kwargs):
# format the object and append to the result
result.append(self.format_field(obj, format_spec))
self.check_unused_args(used_args, args, kwargs)
self.check_unused_args(used_args, args, kwargs)
return ''.join(result)