##// END OF EJS Templates
setup: fail if bz2 is not available
Dirkjan Ochtman -
r10761:16a13fdb stable
parent child Browse files
Show More
@@ -26,6 +26,12 b' except:'
26 26 raise SystemExit(
27 27 "Couldn't import standard zlib (incomplete Python install).")
28 28
29 try:
30 import bz2
31 except:
32 raise SystemExit(
33 "Couldn't import standard bz2 (incomplete Python install).")
34
29 35 import os, subprocess, time
30 36 import shutil
31 37 import tempfile
General Comments 0
You need to be logged in to leave comments. Login now