summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbst-marge-bot <marge-bot@buildstream.build>2019-06-07 15:47:52 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2019-06-07 15:47:52 +0000
commit20747fc2a275c61d4aa135831e3967aca2081267 (patch)
treece20d39bade8ab92bec070ea317a254e72ee50eb
parent16338464b15f8836cd6e84b9e7bc11047494cc66 (diff)
parentea4615a49d79210961a9d95fdacfde20d6139ea0 (diff)
downloadbuildstream-20747fc2a275c61d4aa135831e3967aca2081267.tar.gz
Merge branch 'tpollard/bzrfix' into 'master'
testing/_utils/site.py: Fix missing BZR assignment See merge request BuildStream/buildstream!1385
-rw-r--r--src/buildstream/testing/_utils/site.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/buildstream/testing/_utils/site.py b/src/buildstream/testing/_utils/site.py
index 9e66b804e..64e0603ab 100644
--- a/src/buildstream/testing/_utils/site.py
+++ b/src/buildstream/testing/_utils/site.py
@@ -39,6 +39,7 @@ try:
"BZR_EMAIL": "Testy McTesterson <testy.mctesterson@example.com>"
}
except ProgramNotFoundError:
+ BZR = None
HAVE_BZR = False
BZR_ENV = {}