~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/textinv.py

Merge up bzr.dev.

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')