summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial/stdlib2.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-09-03 07:10:24 (GMT)
committerGeorg Brandl <georg@python.org>2007-09-03 07:10:24 (GMT)
commite4ac7504c9fb005d81c710bff40777dc170694a8 (patch)
tree9ed1a85dd5270233ae9439b13077e9920446d8cb /Doc/tutorial/stdlib2.rst
parent9d4ba3970fa704599769de3676be319133fcaba4 (diff)
downloadcpython-e4ac7504c9fb005d81c710bff40777dc170694a8.zip
cpython-e4ac7504c9fb005d81c710bff40777dc170694a8.tar.gz
cpython-e4ac7504c9fb005d81c710bff40777dc170694a8.tar.bz2
Tutorial formatting patch by Robin Stocker.
Diffstat (limited to 'Doc/tutorial/stdlib2.rst')
-rw-r--r--Doc/tutorial/stdlib2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst
index bd1a225..af243f3 100644
--- a/Doc/tutorial/stdlib2.rst
+++ b/Doc/tutorial/stdlib2.rst
@@ -184,7 +184,7 @@ tasks in background while the main program continues to run::
f = zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED)
f.write(self.infile)
f.close()
- print('Finished background zip of: ', self.infile)
+ print('Finished background zip of:', self.infile)
background = AsyncZip('mydata.txt', 'myarchive.zip')
background.start()