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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ feeds between clients. To use this feature, run castero with the
* Fixed a crash when queueing a large number of episodes with the VLC player.
* Fixed delay when skipping ahead in queue.
* Fixed a crash when running with Python 3.5.
* Fixed crash when trying to create database file in nonexistant directory.
* Fixed crash when trying to create database file in nonexistent directory.
* Fixed episode menu not updating on feed delete.
* Fixed menus not updating when terminal dimensions change.
* Fixed user metadata (i.e. played status) being overwritten when reloading.
Expand Down
2 changes: 1 addition & 1 deletion castero/display.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Display:
def __init__(self, stdscr, database) -> None:
"""
:param stdscr a stdscr from curses.initscr()
:param databse a connected castero.Database
:param database a connected castero.Database
"""
self._stdscr = stdscr
self._database = database
Expand Down
2 changes: 1 addition & 1 deletion tests/test_subscriptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def test_subscriptions_valid_minimal():
assert len(mysubscriptions.feeds) == 0


def test_subscriptions_broken_nonexistant():
def test_subscriptions_broken_nonexistent():
mysubscriptions = Subscriptions()
Feed.__init__ = mock.MagicMock(return_value=None)
with pytest.raises(SubscriptionsLoadError):
Expand Down