Skip to content

Commit

Permalink
Change default separator to newline
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass committed Oct 14, 2024
1 parent 1a56a15 commit b9df3a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ev-dev-tools/src/ev_cli/ev.py
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ def main():

mod_get_templates_parser = mod_actions.add_parser(
'get-templates', aliases=['gt'], parents=[common_parser], help='get paths to template files')
mod_get_templates_parser.add_argument('-s', '--separator', type=str, default=';', help='separator between interface files (default: ;)')
mod_get_templates_parser.add_argument('-s', '--separator', type=str, default='\n', help='separator between interface files (default: ;)')
mod_get_templates_parser.set_defaults(action_handler=module_get_templates)

if_actions = parser_if.add_subparsers(metavar='<action>', help='available actions', required=True)
Expand Down

0 comments on commit b9df3a3

Please sign in to comment.