~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/xml.py

  • Committer: Martin Pool
  • Date: 2005-08-24 00:34:21 UTC
  • Revision ID: mbp@sourcefrog.net-20050824003421-33dd8e5c739cad2a
- send trace messages out through python logging module

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 
23
23
# importing this module is fairly slow because it has to load several ElementTree bits
24
24
try:
25
 
    from cElementTree import ElementTree, SubElement, Element
 
25
    from util.cElementTree import ElementTree, SubElement, Element
26
26
except ImportError:
27
 
    from elementtree.ElementTree import ElementTree, SubElement, Element
 
27
    from util.elementtree.ElementTree import ElementTree, SubElement, Element
28
28
 
29
29
 
30
30
def pack_xml(o, f):