summaryrefslogtreecommitdiff
path: root/buildstream/element.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildstream/element.py')
-rw-r--r--buildstream/element.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 3bdf9720a..5caf8c0ac 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -1948,7 +1948,7 @@ class Element(Plugin):
# (bool): Whether this element can be built incrementally
#
def __can_build_incrementally(self):
- return self._get_workspace() and self.__artifacts.can_diff()
+ return bool(self._get_workspace())
# __get_brief_display_key():
#