]> Frank Brehm's Git Trees - pixelpark/pp-admin-tools.git/commitdiff
Make the linter happy 0.8.8
authorFrank Brehm <frank.brehm@pixelpark.com>
Tue, 30 May 2023 13:53:08 +0000 (15:53 +0200)
committerFrank Brehm <frank.brehm@pixelpark.com>
Tue, 30 May 2023 13:53:08 +0000 (15:53 +0200)
lib/pp_admintools/app/remove_ldap_user.py

index e1a3d93507689d9da99a178b80afb33c87e37434..b0dcdfa3945659d67cb940796ace8a23e40df728 100644 (file)
@@ -25,7 +25,7 @@ from ..xlate import XLATOR
 from .ldap import LdapAppError, FatalLDAPError
 from .ldap import BaseLdapApplication
 
-__version__ = '0.5.9'
+__version__ = '0.5.10'
 LOG = logging.getLogger(__name__)
 
 _ = XLATOR.gettext
@@ -161,7 +161,7 @@ class RemoveLdapUserApplication(BaseLdapApplication):
             LOG.error(_("No users to remove given."))
             self.exit(1)
 
-        deactivate = bool(getattr(self.args, 'remove', False))
+        deactivate = bool(getattr(self.args, 'remove', False))
         remove = bool(getattr(self.args, 'remove', False))
         if remove:
             self.deactivate = False