Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble-scripts.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathaniel Kofalt <nathaniel@kofalt.com>2013-05-02 00:33:15 +0400
committerNathaniel Kofalt <nathaniel@kofalt.com>2013-05-02 00:33:15 +0400
commit920e83763d36012670f52dadaeee2898bd36f3b2 (patch)
treed1b6f1c2373035ec3ef910faa154716502202c5a
parentb16b5a5471a8a57d4246b2a1e5f6eb16d62dbede (diff)
Corrected variable name in idToName
-rw-r--r--Authenticators/LDAP/LDAPauth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Authenticators/LDAP/LDAPauth.py b/Authenticators/LDAP/LDAPauth.py
index a5bbb80..3b3c407 100644
--- a/Authenticators/LDAP/LDAPauth.py
+++ b/Authenticators/LDAP/LDAPauth.py
@@ -528,7 +528,7 @@ def do_main_program():
ldapid = id - cfg.user.id_offset
- for name, uid in self.nae_uid_cache.iteritems():
+ for name, uid in self.name_uid_cache.iteritems():
if uid == ldapid:
if name == 'SuperUser':
debug('idToName %d -> "SuperUser" catched', id)