From: Ragner Magalhaes Date: Tue, 2 Dec 2008 21:16:33 +0000 (+0000) Subject: Fixed protocol append typo on purple.pyx. X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=commitdiff_plain;h=e054bff2c22c31b216ace9066e07c4d65cbc4657;hp=40c9c94b07dbf8d18b56d6d458d24218c07c058d Fixed protocol append typo on purple.pyx. FIXES: - Fixed protocol append typo on purple.pyx. 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@1434 596f6dd7-e928-0410-a184-9e12fd12cf7e --- diff --git a/purple.pyx b/purple.pyx index 8e4dde0..2390432 100644 --- a/purple.pyx +++ b/purple.pyx @@ -345,7 +345,7 @@ cdef class Purple: while iter: pp = iter.data if pp.info and pp.info.name: - protocol_list.append[Protocol(pp.info.id)] + protocol_list.append(Protocol(pp.info.id)) iter = iter.next return protocol_list