Modify

Opened 14 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): 
    2525        self._ldapcfg = {}
    2626        for name, value in self.config.options('ldap'):
    2727            if name in LDAP_DIRECTORY_PARAMS:
    28                 self._ldapcfg[name] = value
     28                self._ldapcfg[str(name)] = value
    2929
    3030        # user entry local cache
    3131        self._cache = {}

Attachments (0)

Change History (2)

comment:1 Changed 11 years ago by Ryan J Ollos

Owner: changed from Jeff Hammel to igoltz

comment:2 Changed 11 years ago by igoltz

Resolution: fixed
Status: newclosed

In 13346:

small change to work with Trac 0.11.6 [close #7095]

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain igoltz.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.