fix incorrect example

This commit is contained in:
Benjamin Peterson 2008-12-13 04:02:20 +00:00
parent 3b02742f7d
commit 9f35070a6b
1 changed files with 1 additions and 1 deletions

View File

@ -734,7 +734,7 @@ The formatting template uses curly brackets (`{`, `}`) as special characters::
Curly brackets can be escaped by doubling them::
>>> format("Empty dict: {{}}")
>>> "Empty dict: {{}}".format()
"Empty dict: {}"
Field names can be integers indicating positional arguments, such as