From: Ragner Magalhaes Date: Tue, 2 Dec 2008 21:20:53 +0000 (+0000) Subject: Method remove uses spaces inst. of tabs X-Git-Url: http://git.maemo.org/git/?p=python-purple;a=commitdiff_plain;h=c2ebf96eec6b90289e9fde5e964a23c12f0e64eb Method remove uses spaces inst. of tabs - Account method remove fixed to use spaces instead of tabs. Signed-off-by: Frederico Simas Duarte git-svn-id: https://garage.maemo.org/svn/carman/branches/carman-0.7-beta2/python-purple@1447 596f6dd7-e928-0410-a184-9e12fd12cf7e --- diff --git a/account.pyx b/account.pyx index 0ae93fd..96fc918 100644 --- a/account.pyx +++ b/account.pyx @@ -396,20 +396,20 @@ cdef class Account: self.__exists = True return True - - def remove(self): - """ + + def remove(self): + """ Removes as existing account. @return True if successful, False if account doesnt exists """ - if self.__exists: - account.purple_accounts_remove(self._get_structure()) - - self__exists = False - return True - else: - return False + if self.__exists: + account.purple_accounts_remove(self._get_structure()) + + self__exists = False + return True + else: + return False def connect(self): """