summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/__init__.py
blob: 6bd0ff9ebc12c174669b7b7a5ca81bf89d0be6a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""This is the set of modules for Bcfg2.Server."""

import lxml.etree
from Bcfg2.Compat import walk_packages

<<<<<<< HEAD
__all__ = ["Admin", "Core", "FileMonitor", "Plugin", "Plugins",
           "Reports", "XMLParser", "XI", "XI_NAMESPACE"]
=======
__all__ = [m[1] for m in walk_packages(path=__path__)]
>>>>>>> maint

XI = 'http://www.w3.org/2001/XInclude'
XI_NAMESPACE = '{%s}' % XI

# pylint: disable=C0103
XMLParser = lxml.etree.XMLParser(remove_blank_text=True)