summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-02-27 16:33:50 +0100
committerbst-marge-bot <marge-bot@buildstream.build>2019-02-27 18:51:33 +0000
commit3c20e79e02651c0c86ef04b17eafb384ec46bbbc (patch)
tree867d7149b904ee4dc6e8ac997bf7c98e2cd8d261
parent2c492ff8a6e9a9c0d17654cc3d3d509828a4e1fd (diff)
downloadbuildstream-3c20e79e02651c0c86ef04b17eafb384ec46bbbc.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 537feade2..6e993c011 100644
--- a/buildstream/storage/_casbaseddirectory.py
+++ b/buildstream/storage/_casbaseddirectory.py
@@ -414,20 +414,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)