Added commit to enable user, causing locking issues

This commit is contained in:
2010-03-14 23:12:31 +00:00
parent ac62f9feb7
commit c17e4bae8f

View File

@@ -76,6 +76,7 @@ class MediawikiService(BaseService):
""" Enable a user """
pwhash = self._gen_mw_hash(password)
self._dbcursor.execute(self.SQL_ENABLE_USER, [pwhash, uid])
self._db.connection.commit()
pass
ServiceClass = 'MediawikiService'