summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAngelos Evripiotis <jevripiotis@bloomberg.net>2019-07-05 16:29:06 +0100
committerAngelos Evripiotis <angelos.evripiotis@gmail.com>2019-07-09 20:48:09 +0000
commitbed9ca0d90eea05d81461ab325929e7512eff595 (patch)
treed4f7d4b996c4ba0e1c509ced932e99025dea193b
parenteb653a94f950947735e570f658e2e71c7c674861 (diff)
downloadbuildstream-bed9ca0d90eea05d81461ab325929e7512eff595.tar.gz
_casbaseddirectory: fix '_mark_changed' spelling
Override the base-class method '_mark_changed', instead of declaring a new unused method that only raises NotImplementedError.
-rw-r--r--src/buildstream/storage/_casbaseddirectory.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/storage/_casbaseddirectory.py b/src/buildstream/storage/_casbaseddirectory.py
index 0d43e3bc5..b88a8a0df 100644
--- a/src/buildstream/storage/_casbaseddirectory.py
+++ b/src/buildstream/storage/_casbaseddirectory.py
@@ -410,7 +410,7 @@ class CasBasedDirectory(Directory):
def export_to_tar(self, tarfile, destination_dir, mtime=BST_ARBITRARY_TIMESTAMP):
raise NotImplementedError()
- def mark_changed(self):
+ def _mark_changed(self):
""" It should not be possible to externally modify a CAS-based
directory at the moment."""
raise NotImplementedError()