From b40c1d292bd2519102b2378ebcd3a08c64e4bf18 Mon Sep 17 00:00:00 2001 From: Akhil Narang Date: Tue, 12 Aug 2025 14:57:14 +0530 Subject: [PATCH] chore(commands/version)!: use `plain` output instead of `legacy` by default This includes the commit hash in the output, which is useful Signed-off-by: Akhil Narang --- frappe/commands/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/commands/utils.py b/frappe/commands/utils.py index 1446fb7d2c..f09bc49474 100644 --- a/frappe/commands/utils.py +++ b/frappe/commands/utils.py @@ -914,7 +914,7 @@ def set_config(context: CliCtxObj, key, value, global_=False, parse=False): "output", type=click.Choice(["plain", "table", "json", "legacy"]), help="Output format", - default="legacy", + default="plain", ) def get_version(output): """Show the versions of all the installed apps."""