/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/bundle/read_bundle.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-06-20 01:17:49 UTC
  • mfrom: (1711.4.21 win32)
  • Revision ID: pqm@pqm.ubuntu.com-20060620011749-a14183c559028aaf
(jam) misc win32 fixes (#50155), fix bundle merging

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
from bzrlib.inventory import (Inventory, InventoryEntry,
29
29
                              InventoryDirectory, InventoryFile,
30
30
                              InventoryLink)
31
 
from bzrlib.osutils import sha_file, sha_string
 
31
from bzrlib.osutils import sha_file, sha_string, pathjoin
32
32
from bzrlib.revision import Revision, NULL_REVISION
33
33
from bzrlib.testament import StrictTestament
34
34
from bzrlib.trace import mutter, warning
718
718
            if old_dir is None:
719
719
                old_path = None
720
720
            else:
721
 
                old_path = os.path.join(old_dir, basename)
 
721
                old_path = pathjoin(old_dir, basename)
722
722
        else:
723
723
            old_path = new_path
724
724
        #If the new path wasn't in renamed, the old one shouldn't be in
743
743
            if new_dir is None:
744
744
                new_path = None
745
745
            else:
746
 
                new_path = os.path.join(new_dir, basename)
 
746
                new_path = pathjoin(new_dir, basename)
747
747
        else:
748
748
            new_path = old_path
749
749
        #If the old path wasn't in renamed, the new one shouldn't be in