diff options
author | Angelos Evripiotis <jevripiotis@bloomberg.net> | 2019-10-17 11:44:41 +0100 |
---|---|---|
committer | Angelos Evripiotis <jevripiotis@bloomberg.net> | 2019-10-17 11:47:35 +0100 |
commit | 4816a16410a25e314819b226f79985712aef02d9 (patch) | |
tree | ba5335d4a578b5d384cb67d544b28219f2bb9046 | |
parent | 99c5d0ecdac0b8fbaf218d1acff6d92c5ae64695 (diff) | |
download | buildstream-4816a16410a25e314819b226f79985712aef02d9.tar.gz |
TEMP: workaround global __FILE_LIST not being pickled
-rw-r--r-- | src/buildstream/node.pyx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buildstream/node.pyx b/src/buildstream/node.pyx index 89bb18eaf..3e9503297 100644 --- a/src/buildstream/node.pyx +++ b/src/buildstream/node.pyx @@ -1437,7 +1437,7 @@ cdef class ProvenanceInformation: cdef __FileInfo fileinfo self._node = nodeish - if (nodeish is None) or (nodeish.file_index == _SYNTHETIC_FILE_INDEX): + if (nodeish is None) or (nodeish.file_index == _SYNTHETIC_FILE_INDEX) or not __FILE_LIST: self._filename = "" self._shortname = "" self._displayname = "" |