/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/plugins/weave_fmt/xml4.py

  • Committer: Vincent Ladeuil
  • Date: 2018-05-24 08:15:15 UTC
  • mto: This revision was merged to the branch mainline in revision 6976.
  • Revision ID: v.ladeuil+brz@free.fr-20180524081515-bwyprs69c3g5o1ci
Define containers and commands for byoci.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# along with this program; if not, write to the Free Software
15
15
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16
16
 
17
 
from bzrlib.xml_serializer import (
 
17
from __future__ import absolute_import
 
18
 
 
19
from ...bzr.xml_serializer import (
18
20
    Element,
19
21
    SubElement,
20
22
    XMLSerializer,
21
23
    escape_invalid_chars,
22
24
    )
23
 
from bzrlib.inventory import ROOT_ID, Inventory
24
 
import bzrlib.inventory as inventory
25
 
from bzrlib.revision import Revision
26
 
from bzrlib.errors import BzrError
 
25
from ...bzr.inventory import ROOT_ID, Inventory
 
26
from ...bzr import inventory
 
27
from ...revision import Revision
 
28
from ...errors import BzrError
27
29
 
28
30
 
29
31
class _Serializer_v4(XMLSerializer):