From 12e677a9cfc8b62ba09f676e4210fa53aabfbd3c Mon Sep 17 00:00:00 2001 From: agessaman Date: Sat, 4 Apr 2026 09:52:22 -0700 Subject: [PATCH] Update default value for condense_paths in MultitestCommand - Changed the fallback value for condense_paths from False to True in the MultitestCommand class, ensuring that paths are condensed by default. This adjustment improves the command's usability and aligns with expected behavior. --- config.ini.example | 2 +- modules/commands/multitest_command.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config.ini.example b/config.ini.example index 1b37cbf..1ebbb8c 100644 --- a/config.ini.example +++ b/config.ini.example @@ -1006,7 +1006,7 @@ enabled = false # Example: "Found {path_count} unique path(s) for @[{sender}]:\n{paths}" response_format = @[{sender}] found {path_count} unique path(s):\n{paths} # When true, {paths} uses shared-prefix lines ending with ┐ U+2510 when branching, then ├ U+251C / └ U+2514 (nested rows use   U+3000 before ├/└) -condense_paths = false +condense_paths = true [Greeter_Command] # Enable greeter to greet users on first channel message (true/false) diff --git a/modules/commands/multitest_command.py b/modules/commands/multitest_command.py index c8aa857..d1c494d 100644 --- a/modules/commands/multitest_command.py +++ b/modules/commands/multitest_command.py @@ -285,7 +285,7 @@ class MultitestCommand(BaseCommand): self.response_format = None # Use default format self.condense_paths = self.get_config_value( - 'Multitest_Command', 'condense_paths', fallback=False, value_type='bool' + 'Multitest_Command', 'condense_paths', fallback=True, value_type='bool' ) def get_help_text(self) -> str: