diff options
| -rw-r--r-- | README.rst | 2 | ||||
| -rw-r--r-- | troveclient/v1/shell.py | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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) |
