create cache folder if needed
This commit is contained in:
parent
d72cd7a5e6
commit
c5a3298144
1 changed files with 4 additions and 1 deletions
|
@ -91,7 +91,10 @@ class Client(object):
|
|||
conn.commit()
|
||||
|
||||
def _conn(self):
|
||||
db_conn = os.path.expanduser(self._config['cache'])
|
||||
dbfile = self._config['cache']
|
||||
if not os.path.exists(os.path.dirname(dbfile)):
|
||||
os.makedirs(os.path.dirname(dbfile))
|
||||
db_conn = os.path.expanduser(dbfile)
|
||||
conn = sqlite3.connect(db_conn, timeout=10)
|
||||
conn.text_factory = sqlite3.OptimizedUnicode
|
||||
return conn, conn.cursor()
|
||||
|
|
Loading…
Reference in a new issue