Modify ↓
#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
376 376 set_user_attribute(self.env, username, attribute, value) 377 377 378 378 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): 380 380 self.log.debug("Refresh password for user: %s" % user) 381 381 store = self.find_user_store(user) 382 382 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
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:2 Changed 6 years ago by
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
I updated the wiki page, AccountManagerPlugin@184.
You can install from the 0.5.0 tag, or from PyPI.
Note: See
TracTickets for help on using
tickets.
This was fixed in r12528. TracAccountManager 0.5 was released in r17162.