diff options
Diffstat (limited to 'cloudinit/sources/helpers/vmware/imc/nic_base.py')
| -rw-r--r-- | cloudinit/sources/helpers/vmware/imc/nic_base.py | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/cloudinit/sources/helpers/vmware/imc/nic_base.py b/cloudinit/sources/helpers/vmware/imc/nic_base.py index 030ba311..3c892db0 100644 --- a/cloudinit/sources/helpers/vmware/imc/nic_base.py +++ b/cloudinit/sources/helpers/vmware/imc/nic_base.py @@ -18,7 +18,7 @@  #    along with this program.  If not, see <http://www.gnu.org/licenses/>. -class NicBase: +class NicBase(object):      """      Define what are expected of each nic.      The following properties should be provided in an implementation class. @@ -93,7 +93,7 @@ class NicBase:          raise NotImplementedError('Check constraints on properties') -class StaticIpv4Base: +class StaticIpv4Base(object):      """      Define what are expected of a static IPv4 setting      The following properties should be provided in an implementation class. @@ -124,7 +124,7 @@ class StaticIpv4Base:          raise NotImplementedError('Ipv4 GATEWAY') -class StaticIpv6Base: +class StaticIpv6Base(object):      """Define what are expected of a static IPv6 setting      The following properties should be provided in an implementation class.      """  | 
