From 1103272b952018579db3c96fa858766df82ba6da Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Wed, 30 Jan 2019 16:11:21 -0800 Subject: [PATCH] De-dupe -d CLI option alias (#575) removed from debug, diffexp gets to keep it --- server/cli/launch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/cli/launch.py b/server/cli/launch.py index 15c3aaf8..9803fc46 100644 --- a/server/cli/launch.py +++ b/server/cli/launch.py @@ -33,7 +33,7 @@ from server.app.util.utils import custom_format_warning show_default=True, help="Provide verbose output, including warnings and all server requests.", ) -@click.option("--debug", "-d", is_flag=True, default=False, show_default=True, help="Run in debug mode.") +@click.option("--debug", is_flag=True, default=False, show_default=True, help="Run in debug mode.") @click.option( "--open", "-o",