Change config & storage filenames

This commit is contained in:
Rakan Alhneiti 2016-02-16 20:56:10 +01:00
parent 8a0d7ad080
commit e3052460d7
2 changed files with 2 additions and 2 deletions

View file

@ -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('~'))

View file

@ -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):