Explorar el Código

fix(deprecation): update to new method (#214)

Signed-off-by: Felipe Zipitria <fzipitria@perceptyx.com>
pull/218/head
Felipe Zipitría hace 4 años
padre
commit
f8498273b5
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      _modules/ovs_config.py

+ 2
- 2
_modules/ovs_config.py Ver fichero

@@ -6,7 +6,7 @@ Support for Open vSwitch database configuration.
from __future__ import absolute_import

import logging
import salt.utils
import salt.utils.path

log = logging.getLogger(__name__)

@@ -15,7 +15,7 @@ def __virtual__():
'''
Only load the module if Open vSwitch is installed
'''
if salt.utils.which('ovs-vsctl'):
if salt.utils.path.which('ovs-vsctl'):
return 'ovs_config'
return False


Cargando…
Cancelar
Guardar