diff options
author | George Hartzell <hartzell@alerce.com> | 2016-07-25 08:45:44 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-25 08:45:44 -0700 |
commit | d684b17c067c7e2024e240da9e1889078a7b1a4d (patch) | |
tree | 76c1ebf858baf4d17a6a2ff2faefaeb758baa3fc | |
parent | 7220bc1766a7c76e53464b009a5816c40f606575 (diff) | |
download | spack-d684b17c067c7e2024e240da9e1889078a7b1a4d.tar.gz spack-d684b17c067c7e2024e240da9e1889078a7b1a4d.tar.bz2 spack-d684b17c067c7e2024e240da9e1889078a7b1a4d.tar.xz spack-d684b17c067c7e2024e240da9e1889078a7b1a4d.zip |
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.
-rw-r--r-- | lib/spack/llnl/util/filesystem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py index 6e4cd338fe..553ec1e4b5 100644 --- a/lib/spack/llnl/util/filesystem.py +++ b/lib/spack/llnl/util/filesystem.py @@ -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) |