From e91d775ff075e236b4f69a4622c57d0096713b1a Mon Sep 17 00:00:00 2001 From: Pavel Cahyna Date: Mon, 13 Jan 2020 19:17:17 +0100 Subject: [PATCH] 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) --- library/blivet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/blivet.py b/library/blivet.py index 858ca2f9..9cf60335 100644 --- a/library/blivet.py +++ b/library/blivet.py @@ -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()