Modify

Opened 6 years ago

Closed 6 years ago

Last modified 6 years ago

#13438 closed defect (duplicate)

Argument mismatch

Reported by: ntmlod Owned by: Ryan J Ollos
Priority: normal Component: AccountManagerPlugin
Severity: normal Keywords:
Cc: Trac Release: 1.0

Description

The fix is for the release 0.4.4

  • acct_mgr/api.py

     
    376376            set_user_attribute(self.env, username, attribute, value)
    377377
    378378    def _maybe_update_hash(self, user, password):
    379         if not get_user_attribute(self.env, 1, user, 'password_refreshed', 1):
     379        if not get_user_attribute(self.env, user, 1, 'password_refreshed', 1):
    380380            self.log.debug("Refresh password for user: %s" % user)
    381381            store = self.find_user_store(user)
    382382            pwstore = self.get_supporting_store('set_password')

But I wonder if there might be any other issues.

Attachments (0)

Change History (3)

comment:1 Changed 6 years ago by Ryan J Ollos

Resolution: duplicate
Status: newclosed

This was fixed in r12528. TracAccountManager 0.5 was released in r17162.

comment:2 Changed 6 years ago by ntmlod

I'm a little confused, do I have to use the trunk with our Trac v1.0?
The current version of the wiki section clearly suggests to use the last tagged branch accmgr-0.4.4: wiki:AccountManagerPlugin#DownloadsandSource

comment:3 Changed 6 years ago by Ryan J Ollos

I updated the wiki page, AccountManagerPlugin@184.

You can install from the 0.5.0 tag, or from PyPI.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Ryan J Ollos.
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.