]> granicus.if.org Git - python/commitdiff
Issue 21554: Repair an out-of-date tutorial example to reflect changes in shutil.
authorRaymond Hettinger <python@rcn.com>
Thu, 22 May 2014 22:37:09 +0000 (23:37 +0100)
committerRaymond Hettinger <python@rcn.com>
Thu, 22 May 2014 22:37:09 +0000 (23:37 +0100)
Doc/tutorial/stdlib.rst

index 2e3ed181d0e48522a1a8cf9d326633cfc64e1696..cd73bc25967b6b9cf2a9107d8aa45da9512b4407 100644 (file)
@@ -40,7 +40,9 @@ a higher level interface that is easier to use::
 
    >>> import shutil
    >>> shutil.copyfile('data.db', 'archive.db')
+   'archive.db'
    >>> shutil.move('/build/executables', 'installdir')
+   'installdir'
 
 
 .. _tut-file-wildcards: