Skip to content

Commit d5bbb65

Browse files
author
benjamin.peterson
committed
specify how things are copied
git-svn-id: http://svn.python.org/projects/python/trunk@67676 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent 4a386f6 commit d5bbb65

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Doc/library/shutil.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ copying and removal. For operations on individual files, see also the
156156
Recursively move a file or directory to another location.
157157

158158
If the destination is on the current filesystem, then simply use rename.
159-
Otherwise, copy src to the dst and then remove src.
159+
Otherwise, copy src (with :func:`copy2`) to the dst and then remove src.
160160

161161
.. versionadded:: 2.3
162162

Mac/BuildScript/build-installer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ def buildPythonDocs():
587587

588588
novername = 'python-docs-html.tar.bz2'
589589
name = 'html-%s.tar.bz2'%(getFullVersion(),)
590-
sourceArchive = os.path.join(DEPSRC, name)
590+
sourceArchive = os.path.join(DEPSRC, novername)
591591
if os.path.exists(sourceArchive):
592592
print "Using local copy of %s"%(name,)
593593

0 commit comments

Comments
 (0)