Fix warnings when the VIM loads plugins

stevedore was treating the string as a list of characters
The code worked, but was littering the logs with warnings

Change-Id: I40f401aab4927e284cb06752977858c4bcecedf0
This commit is contained in:
Bart Wensley 2018-05-16 07:34:46 -05:00 committed by Al Bailey
parent fb8ad39bc1
commit 49ddf1710d
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
TIS_PATCH_VER=73
TIS_PATCH_VER=74

View File

@ -23,7 +23,7 @@ class NFVIPlugin(object):
self._scheduler = scheduler
plugins = stevedore.named.NamedExtensionManager(namespace,
plugin_type,
[plugin_type, ],
invoke_on_load=True,
invoke_args=(),
invoke_kwds={})