diff options
author | Narayan Desai <desai@mcs.anl.gov> | 2005-11-12 18:45:16 +0000 |
---|---|---|
committer | Narayan Desai <desai@mcs.anl.gov> | 2005-11-12 18:45:16 +0000 |
commit | fc81e5994c0bdadc597502951798dc97d4db7793 (patch) | |
tree | 3b63a938fa118854bec9031560867be1f6c0daf8 /src/lib/Server/Plugins/Bundler.py | |
parent | cd49b015166431d36cbe821ec19a5c3e1fad6763 (diff) | |
download | bcfg2-fc81e5994c0bdadc597502951798dc97d4db7793.tar.gz bcfg2-fc81e5994c0bdadc597502951798dc97d4db7793.tar.bz2 bcfg2-fc81e5994c0bdadc597502951798dc97d4db7793.zip |
switch to lxml
(Logical change 1.357)
git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@1488 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Plugins/Bundler.py')
-rw-r--r-- | src/lib/Server/Plugins/Bundler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/Server/Plugins/Bundler.py b/src/lib/Server/Plugins/Bundler.py index b2ea2d9e5..c602dceb7 100644 --- a/src/lib/Server/Plugins/Bundler.py +++ b/src/lib/Server/Plugins/Bundler.py @@ -3,11 +3,11 @@ __revision__ = '$Revision$' from copy import deepcopy from syslog import LOG_ERR, syslog +from lxml.etree import Element, XML +from xml.parsers.expat import ExpatError from Bcfg2.Server.Plugin import Plugin, SingleXMLFileBacked, XMLFileBacked, DirectoryBacked -from elementtree.ElementTree import Element, XML -from xml.parsers.expat import ExpatError class ImageFile(SingleXMLFileBacked): '''This file contains image -> system mappings''' |