aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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')
would've borked it. 2013-02-06Solve Exercise 1-24: C syntax checkerzlg1-110/+122 I'm glad to be done with chapter 1. It feels like I'm starting to gain momentum. I'm certainly looking forward to using higher level constructs like switch(), which I think is available in Chapter 2. So far so good!