This commit is contained in:
Julien Duponchelle
2015-02-13 20:57:09 +01:00
parent d86e880ff7
commit a9a3bb1c38
3 changed files with 15 additions and 4 deletions

View File

@ -24,8 +24,8 @@ class EthernetAdapter(Adapter):
VPCS Ethernet adapter.
"""
def __init__(self):
Adapter.__init__(self, interfaces=1)
def __init__(self, interfaces=1):
Adapter.__init__(self, interfaces=interfaces)
def __str__(self):