Remove commit line from UserStore. This function was not defined in withsqlite, and also unnecessary since autocommit is on.

This commit is contained in:
James Valleroy 2013-11-02 14:56:00 +00:00
parent 49ce1b9389
commit 504a195708

View File

@ -58,7 +58,6 @@ class UserStore(UserStoreModule, sqlite_db):
def remove(self,username=None):
self.__delitem__(username)
self.commit()
def get_all(self):
return self.items()