Skip to content

Commit e91d775

Browse files
committed
Make remaining class new-style (derive from object)
For consistency - other classes needed this, otherwise super() failed with Python 2 (where classic classes are the default)
1 parent 2d5dccd commit e91d775

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/blivet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ def manage_pool(b, pool):
568568
volume['_mount_id'] = bvolume._volume.get('_mount_id', '')
569569

570570

571-
class FSTab:
571+
class FSTab(object):
572572
def __init__(self, blivet_obj):
573573
self._blivet = blivet_obj
574574
self._entries = list()

0 commit comments

Comments
 (0)