Zeroconf: fix unexpected keyword argument
_update_status() got an unexpected keyword argument 'idle_time'
introduced by 28917aaf56
This commit is contained in:
parent
5a33a59ee6
commit
8b960238a6
|
@ -325,7 +325,7 @@ class ConnectionZeroconf(CommonConnection, ConnectionHandlersZeroconf):
|
||||||
def _change_from_invisible(self):
|
def _change_from_invisible(self):
|
||||||
self.connection.announce()
|
self.connection.announce()
|
||||||
|
|
||||||
def _update_status(self, show, msg):
|
def _update_status(self, show, msg, idle_time=None):
|
||||||
if self.connection.set_show_msg(show, msg):
|
if self.connection.set_show_msg(show, msg):
|
||||||
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
|
||||||
show=show))
|
show=show))
|
||||||
|
|
Loading…
Reference in New Issue