~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: John Arbash Meinel
  • Date: 2006-11-06 21:00:45 UTC
  • mto: This revision was merged to the branch mainline in revision 2122.
  • Revision ID: john@arbash-meinel.com-20061106210045-b88ae833b5443145
Remove tabs from source files, and add a test to keep it that way.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2535
2535
    """Unescape predefined XML entities in a string of data."""
2536
2536
    global _unescape_re
2537
2537
    if _unescape_re is None:
2538
 
        _unescape_re = re.compile('\&([^;]*);')
 
2538
        _unescape_re = re.compile('\&([^;]*);')
2539
2539
    return _unescape_re.sub(_unescaper, data)