~ubuntu-branches/debian/stretch/bzr-xmloutput/stretch

« back to all changes in this revision

Viewing changes to infoxml.py

  • Committer: Bazaar Package Importer
  • Author(s): Jelmer Vernooij
  • Date: 2009-05-05 17:26:54 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090505172654-hh5w1j0cv1k8k5km
Tags: 0.8.3+bzr123-1
* Move to section vcs.
* Bump standards version to 3.8.1.
* New upstream snapshot.

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
 
42
42
from bzrlib.errors import (NoWorkingTree, NotBranchError,
43
43
                           NoRepositoryPresent, NotLocalUrl)
44
 
from bzrlib.symbol_versioning import (deprecated_function,
45
 
        zero_eighteen)
 
44
 
46
45
 
47
46
def get_lines_xml(self):
48
47
    return ["<%s>%s</%s>" % (l.replace(' ', '_'), u, l.replace(' ', '_')) for l, u in self.locs ]