Modify ↓
Opened 15 years ago
Closed 11 years ago
#7095 closed defect (fixed)
Config dict needs str(name)
Reported by: | Bruno Harbulot | Owned by: | igoltz |
---|---|---|---|
Priority: | normal | Component: | LdapAuthStorePlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
Similarly to #6183, this plugin needs the following small change to work with Trac 0.11.6:
-
ldapauthstore/ldap_store.py
a b class LdapAuthStore(Component): 25 25 self._ldapcfg = {} 26 26 for name, value in self.config.options('ldap'): 27 27 if name in LDAP_DIRECTORY_PARAMS: 28 self._ldapcfg[ name] = value28 self._ldapcfg[str(name)] = value 29 29 30 30 # user entry local cache 31 31 self._cache = {}
Attachments (0)
Change History (2)
comment:1 Changed 11 years ago by
Owner: | changed from Jeff Hammel to igoltz |
---|
comment:2 Changed 11 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
In 13346: