From: Ragner Magalhaes Date: Tue, 2 Dec 2008 21:17:26 +0000 (+0000) Subject: Fixed a typo on accounts_get_all. X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=commitdiff_plain;h=c69c87b25d72312cca3709a82f38cd5c8fe2592b Fixed a typo on accounts_get_all. FIXES: - Fixed a typo on accounts_get_all. Signed-off-by: Bruno Abinader Acked-by: Ragner Magalhaes git-svn-id: https://garage.maemo.org/svn/carman/branches/carman-0.7-beta2/python-purple@1437 596f6dd7-e928-0410-a184-9e12fd12cf7e --- diff --git a/purple.pyx b/purple.pyx index 2390432..61cc9f2 100644 --- a/purple.pyx +++ b/purple.pyx @@ -331,7 +331,7 @@ cdef class Purple: protocol_id = account.purple_account_get_protocol_id(acc) if username != NULL and protocol_id != NULL: - account_list.append(Account(self, username, protocol_id)) + account_list.append(Account(username, protocol_id, self)) iter = iter.next return account_list