~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/__init__.py

[patch] Test base directory must be unicode (from Alexander)

Show diffs side-by-side

added added

removed removed

Lines of Context:
448
448
            return
449
449
        i = 0
450
450
        while True:
451
 
            root = 'test%04d.tmp' % i
 
451
            root = u'test%04d.tmp' % i
452
452
            try:
453
453
                os.mkdir(root)
454
454
            except OSError, e: