--- src/pylorax/images.py | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/src/pylorax/images.py b/src/pylorax/images.py index 7aae553..75d38e0 100644 --- a/src/pylorax/images.py +++ b/src/pylorax/images.py @@ -569,11 +569,14 @@ class X86(object): stdout=subprocess.PIPE) p.wait() - if os.path.exists(ISOHYBRID): + try: # run isohybrid cmd = [ISOHYBRID, boot_fpath] p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE) + except OSError as e: + raise Exception("cannot run isohybrid: %s" % e) + else: p.wait() # run implantisomd5 -- 1.7.3.2 _______________________________________________ Anaconda-devel-list mailing list Anaconda-devel-list@xxxxxxxxxx https://www.redhat.com/mailman/listinfo/anaconda-devel-list