Fix typo in variable name, doh!

This commit is contained in:
2010-04-08 18:55:22 +01:00
parent 1fdfbb72a2
commit bd3fa3a266

View File

@@ -102,7 +102,7 @@ class MediawikiService(BaseService):
pwhash = self._gen_mw_hash(password)
self._dbcursor.execute(self.SQL_ENABLE_USER, [pwhash, uid])
self._db.connection.commit()
self._dbcursor.execute(self.SQL_ENABBLE_GROUP, [uid])
self._dbcursor.execute(self.SQL_ENABLE_GROUP, [uid])
self._db.connection.commit()
return True