diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/vgstash_cli.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/vgstash_cli.py b/src/vgstash_cli.py index db5853b..c8e8d24 100644 --- a/src/vgstash_cli.py +++ b/src/vgstash_cli.py @@ -196,9 +196,12 @@ def notes(title, system, edit): else: click.echo("Couldn't find an editor for notes. Check the EDITOR environment variable and try again.") else: - click.echo("Notes for {} on {}:".format(target_game.title, target_game.system)) - click.echo() - click.echo(target_game.notes) + if len(target_game.notes) > 0: + click.echo("Notes for {} on {}:".format(target_game.title, target_game.system)) + click.echo() + click.echo(target_game.notes) + else: + click.echo("No notes for {} on {}.".format(target_game.title, target_game.system)) @cli.command("import") |