Skip to content

Commit

Permalink
Merge pull request #34075 from jfindlay/import_xml
Browse files Browse the repository at this point in the history
modules.inspectlib.kiwiproc: import gate lxml
  • Loading branch information
thatch45 committed Jun 17, 2016
2 parents 52b8522 + f882a72 commit 9da592a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion salt/modules/inspectlib/kiwiproc.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,24 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Import python libs
from __future__ import absolute_import
import os
import grp
import pwd
from lxml import etree
from xml.dom import minidom
import platform
import socket

# Import salt libs
from salt.modules.inspectlib.exceptions import InspectorKiwiProcessorException

# Import third party libs
try:
from lxml import etree
except ImportError:
from salt._compat import ElementTree as etree


class KiwiExporter(object):
'''
Expand Down

0 comments on commit 9da592a

Please sign in to comment.