~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-11-06 22:35:54 UTC
  • mfrom: (2120.2.1 no_tabs)
  • Revision ID: pqm@pqm.ubuntu.com-20061106223554-ddb45c6a08929e08
(John Arbash Meinel) remove tabs from source files

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)