aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorzlg <zlg@zlg.space>2018-10-18 21:02:53 -0700
committerzlg <zlg@zlg.space>2018-10-18 21:02:53 -0700
commit69373e362637b5e89ee347c9874f5f8c4ec6a294 (patch)
treed6ef21d2f8b3e105f1375680081f6ae3096f401b /src
parentREADME: expand on usage, cover shell quoting (diff)
downloadvgstash-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 '')
-rw-r--r--src/vgstash_cli.py2
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')
s up login if they're set. 2016-11-15Correct phrasing in README.Ze Libertine Gamer1-4/+4 2016-11-13DerpZe Libertine Gamer1-0/+1 2016-11-03Improve error handling in shell scriptsZe Libertine Gamer4-3/+23 2016-10-24Correct run_again, add recursionZe Libertine Gamer1-0/+4 Loops and functions -- oh my, what a useful combination. :) 2016-10-21Add quotes to correct behavior for arglistZe Libertine Gamer1-1/+1 2016-10-14updater.sh: add recursion, error handlingZe Libertine Gamer1-43/+101 2016-10-14Correct pipe-handling behaviorZe Libertine Gamer1-1/+9 2016-10-12Clarify a method to move between platformsZe Libertine Gamer1-2/+5 Also correct a typo.