From 3fce90b7a87a32c18395c6c05ddf9b5f125b22e8 Mon Sep 17 00:00:00 2001 From: Aiden McClelland Date: Wed, 2 Dec 2020 17:27:33 -0700 Subject: [PATCH] appmgr: adjust subcommand tree --- appmgr/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appmgr/src/main.rs b/appmgr/src/main.rs index 4a32faa4b..f1eacc62d 100644 --- a/appmgr/src/main.rs +++ b/appmgr/src/main.rs @@ -816,10 +816,10 @@ async fn inner_main() -> Result<(), Error> { .takes_value(true) .help("Password to use for encryption of backup file"), ), - ) - .subcommand( - SubCommand::with_name("repair-app-status").about("Restarts crashed apps"), // TODO: remove ), + ) + .subcommand( + SubCommand::with_name("repair-app-status").about("Restarts crashed apps"), // TODO: remove ); let matches = app.clone().get_matches();