Skip to content

Commit

Permalink
fix gobject clients: add missing __init__ call
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@3269 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed May 4, 2013
1 parent 5f85df7 commit 0cba8ab
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/xpra/client/gobject_client_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class GObjectXpraClient(XpraClientBase, gobject.GObject):

def __init__(self):
gobject.GObject.__init__(self)
XpraClientBase.__init__(self)

def init(self, opts):
XpraClientBase.init(self, opts)
Expand Down Expand Up @@ -97,7 +98,8 @@ class CommandConnectClient(GObjectXpraClient):
"""

def __init__(self, conn, opts):
GObjectXpraClient.__init__(self, opts)
GObjectXpraClient.__init__(self)
GObjectXpraClient.init(self, opts)
self.connect_with_timeout(conn)


Expand Down

0 comments on commit 0cba8ab

Please sign in to comment.