From fa7aceeb158f0a92c11e266b1a07668bb7825d54 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Sun, 1 Nov 2020 13:19:29 +0100 Subject: [PATCH] manager: subscription commands s/delete/remove/ no idea why I added it as "delete", for all other such operations we use the "remove" sub-command... Signed-off-by: Thomas Lamprecht --- src/bin/proxmox_backup_manager/subscription.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/proxmox_backup_manager/subscription.rs b/src/bin/proxmox_backup_manager/subscription.rs index 8daec62b..79813a35 100644 --- a/src/bin/proxmox_backup_manager/subscription.rs +++ b/src/bin/proxmox_backup_manager/subscription.rs @@ -45,7 +45,7 @@ pub fn subscription_commands() -> CommandLineInterface { CliCommand::new(&api2::node::subscription::API_METHOD_CHECK_SUBSCRIPTION) .fixed_param("node", "localhost".into()) ) - .insert("delete", + .insert("remove", CliCommand::new(&api2::node::subscription::API_METHOD_DELETE_SUBSCRIPTION) .fixed_param("node", "localhost".into()) )