summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2012-05-05 09:54:30 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2012-05-05 09:54:30 -0500
commit1583d402240d88ad2a4acc024d348a21657ccaba (patch)
tree53fe882999f38a026c2f8724aeba4ef963e00a34 /docs/ref
parent208e26b39c95ab7569780a7962b25dd4749d9a18 (diff)
Fixed the syntax used for the Python repl examples in docs and docstrings.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/utils.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt
index f045f4bf5a..b323f0629f 100644
--- a/docs/ref/utils.txt
+++ b/docs/ref/utils.txt
@@ -240,7 +240,7 @@ Sample usage::
... description="Testing."
... )
>>> with open('test.rss', 'w') as fp:
- >>> feed.write(fp, 'utf-8')
+ ... feed.write(fp, 'utf-8')
For simplifying the selection of a generator use ``feedgenerator.DefaultFeed``
which is currently ``Rss201rev2Feed``