diff options
author | zlg <zlg@zlg.space> | 2018-10-18 21:02:53 -0700 |
---|---|---|
committer | zlg <zlg@zlg.space> | 2018-10-18 21:02:53 -0700 |
commit | 69373e362637b5e89ee347c9874f5f8c4ec6a294 (patch) | |
tree | d6ef21d2f8b3e105f1375680081f6ae3096f401b /src | |
parent | README: expand on usage, cover shell quoting (diff) | |
download | vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.gz vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.bz2 vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.tar.xz vgstash-69373e362637b5e89ee347c9874f5f8c4ec6a294.zip |
cli: show msg if game to be deleted is not in DB
Diffstat (limited to 'src')
-rw-r--r-- | src/vgstash_cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vgstash_cli.py b/src/vgstash_cli.py index c8e8d24..7996086 100644 --- a/src/vgstash_cli.py +++ b/src/vgstash_cli.py @@ -145,6 +145,8 @@ def delete_game(title, system): target_game = vgstash.Game(title, system) if db.delete_game(target_game): click.echo("Removed {} for {} from your collection.".format(title, system)) + else: + click.echo("That game does not exist in your collection. Please try again.") @cli.command('update') |