This commit is contained in:
fasiondog 2020-12-15 22:50:15 +08:00
parent e7467ece44
commit dd0f718d5b
3 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ class SqliteMemDriver:
@dbcommit
def _create_table(self):
filename = os.path.dirname(__file__) + '/sqlite_mem/createdb.sql'
filename = os.path.dirname(__file__) + '/sqlite_mem_sql/createdb.sql'
with open(filename, 'r', encoding='utf8') as f:
self.cursor.executescript(f.read())