From 802802c02f1cee63ee4f578641a83cbd293b7be2 Mon Sep 17 00:00:00 2001 From: Clare Springer Date: Thu, 10 Oct 2013 13:06:13 -0700 Subject: [PATCH] Fixes README and shell Change-Id: I2beec621fce4c8c8eb90631b2e543962f31687de Closes-Bug: #1238183 --- README.rst | 2 +- troveclient/v1/shell.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ed36aadc..76cd5915 100644 --- a/README.rst +++ b/README.rst @@ -72,7 +72,7 @@ You'll find complete documentation on the shell by running Positional arguments: - backup-create Deletes a backup. + backup-create Creates a backup. backup-delete Deletes a backup. backup-list List available backups. backup-list-instance diff --git a/troveclient/v1/shell.py b/troveclient/v1/shell.py index cb9c0f69..d61d9c9e 100644 --- a/troveclient/v1/shell.py +++ b/troveclient/v1/shell.py @@ -246,7 +246,7 @@ def do_backup_delete(cs, args): help='An optional description for the backup.') @utils.service_type('database') def do_backup_create(cs, args): - """Deletes a backup.""" + """Creates a backup.""" backup = cs.backups.create(args.name, args.instance, description=args.description) _print_instance(backup)