expand db path, closes #68
This commit is contained in:
parent
8f86109cb6
commit
1b0a74e188
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
import sqlite3
|
import sqlite3
|
||||||
import logging
|
import logging
|
||||||
|
import os.path
|
||||||
|
|
||||||
logger = logging.getLogger("isso")
|
logger = logging.getLogger("isso")
|
||||||
|
|
||||||
@ -21,7 +22,7 @@ class SQLite3:
|
|||||||
|
|
||||||
def __init__(self, path, conf):
|
def __init__(self, path, conf):
|
||||||
|
|
||||||
self.path = path
|
self.path = os.path.expanduser(path)
|
||||||
self.conf = conf
|
self.conf = conf
|
||||||
|
|
||||||
rv = self.execute([
|
rv = self.execute([
|
||||||
|
Loading…
Reference in New Issue
Block a user