Skip to content

Commit

Permalink
Remove an accidental variable assignment in LVMLogicalVolumeDevice
Browse files Browse the repository at this point in the history
An artifact of rebase or something like that which comes from the commit
c61ccf1.

Acked-by: mulhern <amulhern@redhat.com>
  • Loading branch information
vpodzime committed Jun 2, 2015
1 parent 9331499 commit d215b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion blivet/devices/lvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ class LVMLogicalVolumeDevice(DMDevice):
_resizable = True
_packages = ["lvm2"]
_containerClass = LVMVolumeGroupDevice
_external_dependencies = default=[availability.BLOCKDEV_LVM_PLUGIN]
_external_dependencies = [availability.BLOCKDEV_LVM_PLUGIN]

def __init__(self, name, parents=None, size=None, uuid=None,
copies=1, logSize=None, segType=None,
Expand Down

0 comments on commit d215b34

Please sign in to comment.