From: Nikos Skalkotos Date: Wed, 3 Jul 2013 07:13:39 +0000 (+0300) Subject: Remove bootable options from image class X-Git-Tag: 0.5~1^2~13^2~29 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/c9d53ee235ad6d92a2407741121333fb81993256 Remove bootable options from image class It has never been used. If we need it in the future, we will bring it back --- diff --git a/image_creator/image.py b/image_creator/image.py index eca7673..ccc4f80 100644 --- a/image_creator/image.py +++ b/image_creator/image.py @@ -45,12 +45,11 @@ from sendfile import sendfile class Image(object): """The instances of this class can create images out of block devices.""" - def __init__(self, device, output, bootable=True, meta={}): + def __init__(self, device, output, meta={}): """Create a new Image instance""" self.device = device self.out = output - self.bootable = bootable self.meta = meta self.progress_bar = None self.guestfs_device = None