From c9d53ee235ad6d92a2407741121333fb81993256 Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos Date: Wed, 3 Jul 2013 10:13:39 +0300 Subject: [PATCH] Remove bootable options from image class It has never been used. If we need it in the future, we will bring it back --- image_creator/image.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 -- 1.7.10.4