summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarius Makovsky <traveltissues@protonmail.com>2019-09-05 15:15:07 +0100
committerDarius Makovsky <traveltissues@protonmail.com>2019-09-12 15:35:18 +0100
commit20562312979253bbdf9cc77b2e56b7250732c7e3 (patch)
tree2c2b385aad0db7b64a9ada58e3cb2d47b6d811d1
parent47ebb8c8b01a76f985908c5f506986d1d28c8ae6 (diff)
downloadbuildstream-20562312979253bbdf9cc77b2e56b7250732c7e3.tar.gz
workspace.py: fix _get_local_path
-rw-r--r--src/buildstream/plugins/sources/workspace.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/buildstream/plugins/sources/workspace.py b/src/buildstream/plugins/sources/workspace.py
index 1a99e8a2e..ec3f2cf5b 100644
--- a/src/buildstream/plugins/sources/workspace.py
+++ b/src/buildstream/plugins/sources/workspace.py
@@ -118,8 +118,8 @@ class WorkspaceSource(Source):
reason='ensure-stage-dir-fail')
self.__source_digest = directory._get_digest()
- def _get_local_path(self):
- return self.fullpath
+ def _get_local_path(self) -> str:
+ return self.path
# Plugin entry point
def setup():