Commit ba0cd230 authored by Paweł Szostek's avatar Paweł Szostek

isim.py: check isim version more carefully

parent 72efab29
......@@ -36,5 +36,9 @@ def detect_isim_version(path):
close_fds=True,
stdin=PIPE,
stdout=PIPE)
isim_version = isim.stdout.readlines()[0].strip()
print os.path.join(path, "vlogcomp")
try:
isim_version = isim.stdout.readlines()[0].strip()
except:
return None
return isim_version
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment