[blivet:master 4/8] Use super() instead of explicit parent name

mulhern amulhern at redhat.com
Tue Jul 15 21:35:03 UTC 2014


Signed-off-by: mulhern <amulhern at redhat.com>
---
 blivet/devices.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/blivet/devices.py b/blivet/devices.py
index c3da7f6..3d57df9 100644
--- a/blivet/devices.py
+++ b/blivet/devices.py
@@ -552,7 +552,7 @@ class StorageDevice(Device):
 
         self.exists = exists
         self.uuid = uuid
-        Device.__init__(self, name, parents=parents)
+        super(StorageDevice, self).__init__(name, parents=parents)
 
         self._format = None
         self._size = Size(util.numeric_type(size))
-- 
1.9.3



More information about the anaconda-patches mailing list