summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-02-27 16:33:50 +0100
committerAbderrahim Kitouni <akitouni@gnome.org>2020-08-26 12:47:05 +0100
commit719ee9dfef6f31da00898823f748379cb7322b56 (patch)
treee813ef92058a62d616515838cd44f12a757788e5
parentd74f20e39a52981a57b2b66c41c8965f74fec979 (diff)
downloadbuildstream-719ee9dfef6f31da00898823f748379cb7322b56.tar.gz
_casbaseddirectory.py: Remove docstring for import_files()
The docstring in the superclass should be used as reference. This matches FileBasedDirectory.import_files().
-rw-r--r--buildstream/storage/_casbaseddirectory.py15
1 files changed, 1 insertions, 14 deletions
diff --git a/buildstream/storage/_casbaseddirectory.py b/buildstream/storage/_casbaseddirectory.py
index b939fc68a..9af33f33d 100644
--- a/buildstream/storage/_casbaseddirectory.py
+++ b/buildstream/storage/_casbaseddirectory.py
@@ -608,20 +608,7 @@ class CasBasedDirectory(Directory):
filter_callback=None,
report_written=True, update_mtime=False,
can_link=False):
- """Imports some or all files from external_path into this directory.
-
- Keyword arguments: external_pathspec: Either a string
- containing a pathname, or a Directory object, to use as the
- source.
-
- report_written (bool): Return the full list of files
- written. Defaults to true. If false, only a list of
- overwritten files is returned.
-
- update_mtime (bool): Currently ignored, since CAS does not store mtimes.
-
- can_link (bool): Ignored, since hard links do not have any meaning within CAS.
- """
+ """ See superclass Directory for arguments """
if isinstance(external_pathspec, str):
files = list_relative_paths(external_pathspec)