From 71a5c06d997ca11825a27637e4d1dc189a52ceb9 Mon Sep 17 00:00:00 2001 From: Chad Austin Date: Thu, 4 Jan 2018 11:59:15 -0800 Subject: [PATCH] tiny: correct a help message Summary: Unmount defaults to being nondestructive now. Reviewed By: wez Differential Revision: D6661448 fbshipit-source-id: ccc74ca9e9721248145d1fc981f209db4d77ba78 --- eden/cli/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eden/cli/main.py b/eden/cli/main.py index 2636834bca..63e1aa9bd8 100644 --- a/eden/cli/main.py +++ b/eden/cli/main.py @@ -550,7 +550,7 @@ def create_parser(): mount_parser = subparsers.add_parser( 'mount', help='Remount an existing client (for instance, after it was ' - 'unmounted with "unmount -n")') + 'unmounted with "unmount")') mount_parser.add_argument( 'path', help='The client mount path') mount_parser.set_defaults(func=do_mount)