~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/textinv.py

  • Committer: John Arbash Meinel
  • Author(s): Mark Hammond
  • Date: 2008-09-09 17:02:21 UTC
  • mto: This revision was merged to the branch mainline in revision 3697.
  • Revision ID: john@arbash-meinel.com-20080909170221-svim3jw2mrz0amp3
An updated transparent icon for bzr.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
 
37
37
 
38
38
def unescape(s):
39
 
    assert s.find(' ') == -1
 
39
    if s.find(' ') != -1:
 
40
        raise AssertionError()
40
41
    s = (s.replace(r'\x20', ' ')
41
42
         .replace(r'\x09', '\t')
42
43
         .replace(r'\x0a', '\n')