summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClare Springer <yidclare@gmail.com>2013-10-10 13:06:13 -0700
committerGerrit Code Review <review@openstack.org>2013-10-10 21:50:26 +0000
commit802802c02f1cee63ee4f578641a83cbd293b7be2 (patch)
tree3614f1ad5ac48a2410d06632144a05fb1545b9e5
parent3b09d769082fb288bbf8f8326d83b7db105762b8 (diff)
downloadpython-troveclient-1.0.1.tar.gz
Fixes README and shell1.0.1
Change-Id: I2beec621fce4c8c8eb90631b2e543962f31687de Closes-Bug: #1238183
-rw-r--r--README.rst2
-rw-r--r--troveclient/v1/shell.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index ed36aad..76cd591 100644
--- a/README.rst
+++ b/README.rst
@@ -72,7 +72,7 @@ You'll find complete documentation on the shell by running
Positional arguments:
<subcommand>
- 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 cb9c0f6..d61d9c9 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)