diff options
author | Martin Basti <mbasti@redhat.com> | 2016-09-26 14:08:17 +0200 |
---|---|---|
committer | Martin Basti <mbasti@redhat.com> | 2016-09-27 13:35:58 +0200 |
commit | 0f88f8fe889ae4801fc8d5ece1ad51c5246718ac (patch) | |
tree | 4f38fb6210abaa9f354353df2abda96d1b8fb612 /ipaserver/install/plugins/update_passsync.py | |
parent | 452b08754d02b89c0e3117b83d9156e6110943c9 (diff) | |
download | freeipa-0f88f8fe889ae4801fc8d5ece1ad51c5246718ac.tar.gz freeipa-0f88f8fe889ae4801fc8d5ece1ad51c5246718ac.tar.xz freeipa-0f88f8fe889ae4801fc8d5ece1ad51c5246718ac.zip |
Remove unused variables in the code
This commit removes unused variables or rename variables as "expected to
be unused" by using "_" prefix.
This covers only cases where fix was easy or only one unused variable
was in a module
Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
Reviewed-By: Stanislav Laznicka <slaznick@redhat.com>
Diffstat (limited to 'ipaserver/install/plugins/update_passsync.py')
-rw-r--r-- | ipaserver/install/plugins/update_passsync.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipaserver/install/plugins/update_passsync.py b/ipaserver/install/plugins/update_passsync.py index 36ebb49d9..d3235a27f 100644 --- a/ipaserver/install/plugins/update_passsync.py +++ b/ipaserver/install/plugins/update_passsync.py @@ -60,7 +60,7 @@ class update_passync_privilege_update(Updater): self.api.env.basedn) try: - entry = ldap.get_entry(passsync_dn, ['']) + ldap.get_entry(passsync_dn, ['']) except errors.NotFound: root_logger.debug("PassSync user not found, no update needed") sysupgrade.set_upgrade_state('winsync', 'passsync_privilege_updated', True) |