forked from platypush/platypush
Fixed typo on main.db
This commit is contained in:
parent
56b48a81b7
commit
f9b23afbb6
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ class Config(object):
|
||||||
self._config['workdir'] = self._workdir_location
|
self._config['workdir'] = self._workdir_location
|
||||||
os.makedirs(self._config['workdir'], exist_ok=True)
|
os.makedirs(self._config['workdir'], exist_ok=True)
|
||||||
|
|
||||||
self._config['db'] = self._config.get('main_db', {
|
self._config['db'] = self._config.get('main.db', {
|
||||||
'engine': 'sqlite:///' + os.path.join(
|
'engine': 'sqlite:///' + os.path.join(
|
||||||
os.environ['HOME'], '.local', 'share', 'platypush', 'main.db')
|
os.environ['HOME'], '.local', 'share', 'platypush', 'main.db')
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue