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:
George Hartzell 2016-07-25 08:45:44 -07:00 committed by GitHub
parent 7220bc1766
commit d684b17c06

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)