Change config & storage filenames
This commit is contained in:
parent
8a0d7ad080
commit
e3052460d7
2 changed files with 2 additions and 2 deletions
|
@ -32,4 +32,4 @@ class Configs:
|
|||
self._config_parser.write(open(self._get_file_path(), 'w'))
|
||||
|
||||
def _get_file_path(self):
|
||||
return '{}/.pocket-time'.format(os.path.expanduser('~'))
|
||||
return '{}/.pocket-config'.format(os.path.expanduser('~'))
|
||||
|
|
|
@ -4,7 +4,7 @@ import os
|
|||
|
||||
class Storage:
|
||||
def __init__(self):
|
||||
self._filename = '{}/.pocket-time-index'.format(
|
||||
self._filename = '{}/.pocket-index'.format(
|
||||
os.path.expanduser('~'))
|
||||
|
||||
def is_empty(self):
|
||||
|
|
Loading…
Reference in a new issue