Fixes README and shell

Change-Id: I2beec621fce4c8c8eb90631b2e543962f31687de
Closes-Bug: #1238183
This commit is contained in:
Clare Springer 2013-10-10 13:06:13 -07:00 committed by Gerrit Code Review
parent 3b09d76908
commit 802802c02f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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)