Skip to content
Snippets Groups Projects
Commit 8b960238 authored by André's avatar André
Browse files

Zeroconf: fix unexpected keyword argument

_update_status() got an unexpected keyword argument 'idle_time'

introduced by 28917aaf
parent 5a33a59e
No related branches found
No related tags found
No related merge requests found
......@@ -325,7 +325,7 @@ class ConnectionZeroconf(CommonConnection, ConnectionHandlersZeroconf):
def _change_from_invisible(self):
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):
app.nec.push_incoming_event(OurShowEvent(None, conn=self,
show=show))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment