Skip to content

Commit b5cd2b2

Browse files
authored
Merge pull request #72 from pcahyna/new-style-classes
Make remaining class new-style (derive from object)
2 parents 2d5dccd + e91d775 commit b5cd2b2

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)