/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Martin Pool
  • Date: 2006-05-05 01:15:53 UTC
  • mto: This revision was merged to the branch mainline in revision 1698.
  • Revision ID: mbp@sourcefrog.net-20060505011553-76b4687a5e1d01e3
[patch] force deletion of trees containing readonly files (alexander)

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
import logging
34
34
import os
35
35
import re
36
 
import shutil
37
36
import stat
38
37
import sys
39
38
import tempfile
908
907
        if test_root is not None:
909
908
            print 'Deleting test root %s...' % test_root
910
909
            try:
911
 
                shutil.rmtree(test_root)
 
910
                osutils.rmtree(test_root)
912
911
            finally:
913
912
                print
914
913
    else: