diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2018-09-10 16:33:33 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2018-09-10 16:33:33 +0100 |
commit | 6e79c4b4a4f32fa549708dbb8c8b9af73ab8ff61 (patch) | |
tree | 098421e46eac9ca537d865a4282ac498df41dec7 | |
parent | 322f4a517ae336cc1443f9a399a0d15d45ec48b9 (diff) | |
download | sos-6e79c4b4a4f32fa549708dbb8c8b9af73ab8ff61.tar.gz |
[archive] remove unused 'copy' arg from FileCacheArchive.add_dir()
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r-- | sos/archive.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sos/archive.py b/sos/archive.py index 6db398fc..4b30630b 100644 --- a/sos/archive.py +++ b/sos/archive.py @@ -439,8 +439,7 @@ class FileCacheArchive(Archive): self.log_debug("No link follow up: source=%s link_name=%s" % (source, link_name)) - - def add_dir(self, path, copy=False): + def add_dir(self, path): """Create a directory in the archive. :param path: the path in the host file system to add |