Comment 0 for bug 735706

Revision history for this message
Martin (martinkauffmann) wrote :

Binary package hint: guake

For the key "/system/proxy/secure_port" = 0, guake reports a glib error:
It expects a string and receives a integer during proxy update.

I fixed the problem by adjusting line 1102 in "/usr/lib/guake/guake.py", in "update_proxy_vars":

    ssl_port = self.client.get_string('/system/proxy/secure_port')

replaced by:

    ssl_port = self.client.get_int('/system/proxy/secure_port')

I think that’s it.