Fix DMLinearDevice._postSetup to not take or pass an 'orig' arg.
> diff --git a/pyanaconda/storage/devices.py b/pyanaconda/storage/devices.py
> index d46fea3..b22d963 100644
> --- a/pyanaconda/storage/devices.py
> +++ b/pyanaconda/storage/devices.py
> @@ -1738,8 +1738,8 @@ class DMLinearDevice(DMDevice):
> dm.dm_create_linear(self.name, self.slave.path, slave_length,
> self.dmUuid)
>
> - def _postSetup(self, orig=False):
> - StorageDevice._postSetup(orig=orig)
> + def _postSetup(self):
> + StorageDevice._postSetup(self)
> self.setupPartitions()
> udev_settle()
ACK.
- Chris
_______________________________________________
Anaconda-devel-list mailing list
Anaconda-devel-list@redhat.com
https://www.redhat.com/mailman/listinfo/anaconda-devel-list
|