~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Martin Pool
  • Date: 2006-01-19 09:11:39 UTC
  • Revision ID: mbp@sourcefrog.net-20060119091139-d925dfcfdeef7109
Fix 'bzr added' typo, and tests for that command.  

Patch from Nathan McCallum.

Show diffs side-by-side

added added

removed removed

Lines of Context:
858
858
            if file_id in basis_inv:
859
859
                continue
860
860
            path = inv.id2path(file_id)
861
 
            if not os.access(b.abspath(path), os.F_OK):
 
861
            if not os.access(bzrlib.osutils.abspath(path), os.F_OK):
862
862
                continue
863
863
            print path
864
864