Move yaml utilities to salt.utils, #631

This commit is contained in:
Dan Colish 2012-03-15 13:00:06 -07:00
parent 564246ed6e
commit 4ceacf6912
3 changed files with 3 additions and 3 deletions

View File

@ -12,8 +12,7 @@ import warnings
# Import Salt libs
from salt.utils.jinja import get_template
from salt.renderers.utils import CustomLoader, load
from salt.utils.yaml import CustomLoader, load
log = logging.getLogger(__name__)

View File

@ -11,7 +11,7 @@ import os
# Import Third Party libs
from mako.template import Template
from salt.renderers.utils import CustomLoader, load
from salt.utils.yaml import CustomLoader, load
def render(template, env='', sls=''):

View File

@ -1,3 +1,4 @@
from __future__ import absolute_import
import warnings
# Import thirt party modules