Merge "add cmd_name argument to CompleteCommand"

This commit is contained in:
Jenkins 2017-06-29 23:02:56 +00:00 committed by Gerrit Code Review
commit 790a26ed00
1 changed files with 2 additions and 2 deletions

View File

@ -167,8 +167,8 @@ class CompleteCommand(command.Command):
log = logging.getLogger(__name__ + '.CompleteCommand')
def __init__(self, app, app_args):
super(CompleteCommand, self).__init__(app, app_args)
def __init__(self, app, app_args, cmd_name=None):
super(CompleteCommand, self).__init__(app, app_args, cmd_name)
self._formatters = stevedore.ExtensionManager(
namespace='cliff.formatter.completion',
)