/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/transform.py

  • Committer: Vincent Ladeuil
  • Date: 2008-09-01 06:19:29 UTC
  • mfrom: (3638.3.7 osx_tests_fix)
  • mto: This revision was merged to the branch mainline in revision 3669.
  • Revision ID: v.ladeuil+lp@free.fr-20080901061929-hqd7szgqkdm0k4qu
Fix some OSX failing tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import os
18
18
import errno
19
19
from stat import S_ISREG, S_IEXEC
20
 
import tempfile
21
20
 
22
21
from bzrlib.lazy_import import lazy_import
23
22
lazy_import(globals(), """
1408
1407
 
1409
1408
    def __init__(self, tree, pb=DummyProgress(), case_sensitive=True):
1410
1409
        tree.lock_read()
1411
 
        limbodir = tempfile.mkdtemp(prefix='bzr-limbo-')
 
1410
        limbodir = osutils.mkdtemp(prefix='bzr-limbo-')
1412
1411
        TreeTransformBase.__init__(self, tree, limbodir, pb, case_sensitive)
1413
1412
 
1414
1413
    def canonical_path(self, path):