Merge pull request #1357 from hartzell/patch-6

Fix doc for install_tree (cut/paste error)
This commit is contained in:
becker33 2016-08-01 13:45:20 -07:00 committed by GitHub
commit 49e47966a8

View File

@ -189,7 +189,7 @@ def install(src, dest):
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))
shutil.copytree(src, dest, **kwargs)