id,summary,reporter,owner,description,type,status,priority,component,severity,resolution,keywords,cc,release 8834,"TypeError: sequence item 0: expected string, int found",stroucki@…,Steffen Hoffmann," 224 new_password = self._random_password() 225 mgr = AccountManager(self.env) 226 try: 227 mgr._notify('password_reset', username, email, new_password) 228 except Exception, e: 229 return {'error': ','.join(e.args)} 230 mgr.set_password(username, new_password) 231 if mgr.force_passwd_change: 232 db = self.env.get_db_cnx() 233 cursor = db.cursor() In line 229 here, if the error returning is something like (111, 'Connection refused), the statement will fail because 111 is not a string. Changing to join(map(str, e.args)) will convert all members to string and remove the error.",defect,closed,normal,AccountManagerPlugin,normal,fixed,type error exception,,0.11