diff options
author | Georg Brandl <georg@python.org> | 2007-09-03 07:10:24 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-03 07:10:24 (GMT) |
commit | e4ac7504c9fb005d81c710bff40777dc170694a8 (patch) | |
tree | 9ed1a85dd5270233ae9439b13077e9920446d8cb /Doc/tutorial/stdlib2.rst | |
parent | 9d4ba3970fa704599769de3676be319133fcaba4 (diff) | |
download | cpython-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.rst | 2 |
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() |