1
0
mirror of https://github.com/gryf/wicd.git synced 2026-01-04 12:54:12 +01:00

Fixed property name for the wired interface

This commit is contained in:
2020-08-01 19:24:01 +02:00
parent 8940b201da
commit d4fc621f4f

View File

@@ -1113,12 +1113,12 @@ class Wired(Controller):
self.liface.link_detect = value self.liface.link_detect = value
@property @property
def wired_iface(self): def wired_interface(self):
"""Getter for wired_interface property.""" """Getter for wired_interface property."""
return self._wired_interface return self._wired_interface
@wired_iface.setter @wired_interface.setter
def wired_iface(self, value): def wired_interface(self, value):
"""Setter for wired_interface property.""" """Setter for wired_interface property."""
self._wired_interface = value self._wired_interface = value
if self.liface: if self.liface: