Skip to content

Commit

Permalink
oops: cannot use keyword arg with idle_add!
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@6981 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Jul 28, 2014
1 parent 0f1198c commit e2ba5b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/net/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ def _read(self):

def _internal_error(self, message="", exc_info=False):
log.error("internal error: %s", message)
self.idle_add(self._connection_lost, message, exc_info=exc_info)
self.idle_add(self._connection_lost, message, exc_info)

def _connection_lost(self, message="", exc_info=False):
log("connection lost: %s", message, exc_info=exc_info)
Expand Down

0 comments on commit e2ba5b1

Please sign in to comment.