replace actionStr with action_name

This commit is contained in:
Isaac 2023-05-04 13:29:25 -07:00
parent b7fe2a5031
commit 062453af51
No known key found for this signature in database
GPG Key ID: E69FB5A841448A48
1 changed files with 4 additions and 4 deletions

View File

@ -109,8 +109,8 @@ def fish_completion():
+ ('\n# subparser completions',)
+ tuple(
'''complete -c borgmatic -a '%s' -d %s -f -n "not __fish_seen_subcommand_from %s"'''
% (actionStr, shlex.quote(subparser.description), all_subparsers)
for actionStr, subparser in subparsers.choices.items()
% (action_name, shlex.quote(subparser.description), all_subparsers)
for action_name, subparser in subparsers.choices.items()
)
+ ('\n# global flags',)
+ tuple(
@ -124,10 +124,10 @@ def fish_completion():
% (
' '.join(action.option_strings),
shlex.quote(action.help),
actionStr,
action_name,
build_fish_flags(action),
)
for actionStr, subparser in subparsers.choices.items()
for action_name, subparser in subparsers.choices.items()
for action in subparser._actions
)
)