Corrected one last typo, I promise

This commit is contained in:
Adarnof 2015-11-08 10:14:44 +00:00
parent 5ab4ce2869
commit 810b626005

View File

@ -219,7 +219,7 @@ class Phpbb3Manager:
if Phpbb3Manager.check_user(username): if Phpbb3Manager.check_user(username):
pwhash = Phpbb3Manager.__gen_hash(password) pwhash = Phpbb3Manager.__gen_hash(password)
cursor.execute(Phpbb3Manager.SQL_UPDATE_USER_PASSWORD, [pwhash, username]) cursor.execute(Phpbb3Manager.SQL_UPDATE_USER_PASSWORD, [pwhash, username])
Phpbb3Manager.__add_avater(username, characterid) Phpbb3Manager.__add_avatar(username, characterid)
return password return password
return "" return ""