Skip to content
Snippets Groups Projects
Commit 16a13fdb authored by Dirkjan Ochtman's avatar Dirkjan Ochtman
Browse files

setup: fail if bz2 is not available

parent bdb60057
No related branches found
No related tags found
No related merge requests found
......@@ -26,6 +26,12 @@
raise SystemExit(
"Couldn't import standard zlib (incomplete Python install).")
try:
import bz2
except:
raise SystemExit(
"Couldn't import standard bz2 (incomplete Python install).")
import os, subprocess, time
import shutil
import tempfile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment