Fix doc for install_tree (cut/paste error)
It looks like the docs for copy_tree were cut/paste from copy and still referred to installing a "file". This fixes that.
This commit is contained in:
parent
7220bc1766
commit
d684b17c06
@ -189,7 +189,7 @@ def install(src, dest):
|
|||||||
|
|
||||||
|
|
||||||
def install_tree(src, dest, **kwargs):
|
def install_tree(src, dest, **kwargs):
|
||||||
"""Manually install a file to a particular location."""
|
"""Manually install a directory tree to a particular location."""
|
||||||
tty.debug("Installing %s to %s" % (src, dest))
|
tty.debug("Installing %s to %s" % (src, dest))
|
||||||
shutil.copytree(src, dest, **kwargs)
|
shutil.copytree(src, dest, **kwargs)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user