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

  • Committer: John Arbash Meinel
  • Date: 2005-12-01 18:33:35 UTC
  • mto: (1185.50.19 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1532.
  • Revision ID: john@arbash-meinel.com-20051201183335-578f560fb6f8d3c3
Changing os.path.normpath to osutils.normpath

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
                            splitpath,
69
69
                            rand_bytes,
70
70
                            abspath,
 
71
                            normpath,
71
72
                            realpath,
72
73
                            relpath,
73
74
                            rename)
373
374
            if len(fp) == 0:
374
375
                raise BzrError("cannot add top-level %r" % f)
375
376
 
376
 
            fullpath = os.path.normpath(self.abspath(f))
 
377
            fullpath = normpath(self.abspath(f))
377
378
 
378
379
            try:
379
380
                kind = file_kind(fullpath)