Updated remove() method from Account class.
authorRagner Magalhaes <ragner.magalhaes@openbossa.org>
Tue, 2 Dec 2008 21:21:35 +0000 (21:21 +0000)
committerAnderson Briglia <anderson.briglia@openbossa.org>
Sat, 28 Feb 2009 21:11:20 +0000 (17:11 -0400)
FIXES:
 - Updated remove() method from Account class, replacing
   purple_accounts_remove with purple_accounts_delete.

Signed-off-by: Bruno Abinader <bruno.abinader@openbossa.org>
Acked-by: Frederico Duarte <fred.duarte@openbossa.org>

git-svn-id: https://garage.maemo.org/svn/carman/branches/carman-0.7-beta2/python-purple@1449 596f6dd7-e928-0410-a184-9e12fd12cf7e

account.pyx

index 96fc918..cddbba7 100644 (file)
@@ -396,16 +396,15 @@ cdef class Account:
 
             self.__exists = True
             return True
 
             self.__exists = True
             return True
-    
+
     def remove(self):
         """
     def remove(self):
         """
-        Removes as existing account.
+        Removes an existing account.
 
 
-        @return True if successful, False if account doesnt exists
+        @return True if successful, False if account doesn't exists
         """
         if self.__exists:
         """
         if self.__exists:
-            account.purple_accounts_remove(self._get_structure())
-        
+            account.purple_accounts_delete(self._get_structure())
             self__exists = False
             return True
         else:
             self__exists = False
             return True
         else: