Revision 92a6ff01

b/image_creator/image.py
45 45
class Image(object):
46 46
    """The instances of this class can create images out of block devices."""
47 47

  
48
    def __init__(self, device, output, bootable=True, meta={}):
48
    def __init__(self, device, output, meta={}):
49 49
        """Create a new Image instance"""
50 50

  
51 51
        self.device = device
52 52
        self.out = output
53
        self.bootable = bootable
54 53
        self.meta = meta
55 54
        self.progress_bar = None
56 55
        self.guestfs_device = None

Also available in: Unified diff