diff options
-rw-r--r-- | lib/spack/llnl/util/filesystem.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/spack/llnl/util/filesystem.py b/lib/spack/llnl/util/filesystem.py index 4732924572..8f9590d284 100644 --- a/lib/spack/llnl/util/filesystem.py +++ b/lib/spack/llnl/util/filesystem.py @@ -2774,22 +2774,6 @@ def prefixes(path): @system_path_filter -def md5sum(file): - """Compute the MD5 sum of a file. - - Args: - file (str): file to be checksummed - - Returns: - MD5 sum of the file's content - """ - md5 = hashlib.md5() - with open(file, "rb") as f: - md5.update(f.read()) - return md5.digest() - - -@system_path_filter def remove_directory_contents(dir): """Remove all contents of a directory.""" if os.path.exists(dir): |