summaryrefslogtreecommitdiff
path: root/completions/mailmanctl
diff options
context:
space:
mode:
Diffstat (limited to 'completions/mailmanctl')
-rw-r--r--completions/mailmanctl6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/mailmanctl b/completions/mailmanctl
index 717df7b9..dac1c5bf 100644
--- a/completions/mailmanctl
+++ b/completions/mailmanctl
@@ -6,10 +6,10 @@ _mailmanctl()
_init_completion || return
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '--no-restart --run-as-user
- --stale-lock-cleanup --quiet --help' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '--no-restart --run-as-user
+ --stale-lock-cleanup --quiet --help' -- "$cur") )
else
- COMPREPLY=( $( compgen -W 'start stop restart reopen' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W 'start stop restart reopen' -- "$cur") )
fi
} &&