diff --git a/bookshelf/__main__.py b/bookshelf/__main__.py index a490a56..91db036 100644 --- a/bookshelf/__main__.py +++ b/bookshelf/__main__.py @@ -159,9 +159,10 @@ def story_info_entry(story_name: str): except KeyboardInterrupt: pass + @bookshelf.command(name='cancel') @click.argument('story_name', type=story_type) -def start_chapter_entry(story_name): +def cancel_chapter(story_name): """Cancel the current chapter of a story on your bookshelf""" try: if not bookshelf_storage.story_exists(story_name):