X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=proxy.pyx;h=7deb3ac270b05a3c37746016420206815d90ad39;hb=33091059fda101f7c4105945a677db2632d4ffcc;hp=cb248230666527804a1eff14cfd6aba25dec038b;hpb=c7d5e9f4dc0cb8af06129380ad0eb3ae48b7b21b;p=python-purple diff --git a/proxy.pyx b/proxy.pyx index cb24823..7deb3ac 100644 --- a/proxy.pyx +++ b/proxy.pyx @@ -99,16 +99,16 @@ cdef class ProxyInfo: cdef account.PurpleAccount *c_account cdef proxy.PurpleProxyInfo *c_proxyinfo - c_account = account.c_purple_accounts_find(acc[0], acc[1]) + c_account = account.purple_accounts_find(acc[0], acc[1]) if c_account == NULL: #FIXME: Message error or call a callback handle to error return False - c_proxyinfo = account.c_purple_account_get_proxy_info(c_account) + c_proxyinfo = account.purple_account_get_proxy_info(c_account) if c_proxyinfo == NULL: c_proxyinfo = proxy.c_purple_proxy_info_new() - account.c_purple_account_set_proxy_info(c_account, c_proxyinfo) + account.purple_account_set_proxy_info(c_account, c_proxyinfo) if info.has_key('type') and info['type']: type = info['type']