Skip to content

Commit

Permalink
Merge pull request #72 from pcahyna/new-style-classes
Browse files Browse the repository at this point in the history
Make remaining class new-style (derive from object)
  • Loading branch information
pcahyna authored Jan 14, 2020
2 parents 2d5dccd + e91d775 commit b5cd2b2
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 b5cd2b2

Please sign in to comment.