Skip to content

Commit

Permalink
Make remaining class new-style (derive from object)
Browse files Browse the repository at this point in the history
For consistency - other classes needed this, otherwise super()
failed with Python 2 (where classic classes are the default)
  • Loading branch information
pcahyna committed Jan 14, 2020
1 parent 2d5dccd commit e91d775
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/blivet.py
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ def manage_pool(b, pool):
volume['_mount_id'] = bvolume._volume.get('_mount_id', '')


class FSTab:
class FSTab(object):
def __init__(self, blivet_obj):
self._blivet = blivet_obj
self._entries = list()
Expand Down

0 comments on commit e91d775

Please sign in to comment.