summaryrefslogtreecommitdiffstats
path: root/Doc/library/poplib.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Doc/library/poplib.rst')
-rw-r--r--Doc/library/poplib.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/poplib.rst b/Doc/library/poplib.rst
index e9466b7..b462ec5 100644
--- a/Doc/library/poplib.rst
+++ b/Doc/library/poplib.rst
@@ -191,7 +191,7 @@ retrieves and prints all messages::
numMessages = len(M.list()[1])
for i in range(numMessages):
for j in M.retr(i+1)[1]:
- print j
+ print(j)
At the end of the module, there is a test section that contains a more extensive
example of usage.