Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,8 @@ download and unpack the [zipped folder](https://github.com/iamaziz/TermFeed/arch

$ pip uninstall TermFeed

I use a data file (`.termfeed.db`) as a mini-database to maintain the RSS URLs.
This file is created at the home directory (e.g. `$HOME/.termfeed.db`), delete it as well.
I use a data file (`.termfeed`) as a mini-database to maintain the RSS URLs.
This file is created at the home directory (e.g. `$HOME/.termfeed`), delete it as well.


> Remember, you may need to run these commands as an admin e.g.
Expand Down
4 changes: 2 additions & 2 deletions termfeed/dbop.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

def rebuild_library():
import termfeed.dbinit
print('created ".termfeed.db" in {}'.format(homedir))
print('created ".termfeed" in {}'.format(homedir))

# instantiate db if it's not created yet
if not path.exists(homedir + '/.termfeed.db'):
if not path.exists(homedir + '/.termfeed'):
rebuild_library()


Expand Down