summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilliam Durand <will+git@drnd.me>2018-03-15 11:36:20 +0100
committerGitHub <noreply@github.com>2018-03-15 11:36:20 +0100
commitad7bc280bde54a6c5b502586ec97593e9c0ccc6e (patch)
tree6dd5c4ee505771abd7e950353e423b3e1734244d
parent1244f7f8a069ecb671f2f82ae0a6e1a5764915a6 (diff)
parentf3dd29d7290046e7ab1ce34351faf3d1194b7350 (diff)
Merge pull request #199 from rndmh3ro/consistent_naming
Change message when frame is removed
-rw-r--r--watson/cli.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/watson/cli.py b/watson/cli.py
index 593ce41..dc8a305 100644
--- a/watson/cli.py
+++ b/watson/cli.py
@@ -894,7 +894,7 @@ def remove(watson, id, force):
del watson.frames[id]
watson.save()
- click.echo("Frame deleted.")
+ click.echo("Frame removed.")
@cli.command()