~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

  • Committer: Martin Pool
  • Date: 2005-06-17 07:34:04 UTC
  • Revision ID: mbp@sourcefrog.net-20050617073404-7c914dc1bd15f38a
- don't display progress bars on really dumb terminals

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
                print "skipping %s (can't add file of kind '%s')" % (f, kind)
69
69
                continue
70
70
 
71
 
        mutter("smart add of %r, abs=%r" % (f, af))
 
71
        bzrlib.mutter("smart add of %r, abs=%r" % (f, af))
72
72
        
73
73
        if bzrlib.branch.is_control_file(af):
74
74
            raise ForbiddenFileError('cannot add control file %s' % f)
82
82
        else:
83
83
            file_id = bzrlib.branch.gen_file_id(rf)
84
84
            inv.add_path(rf, kind=kind, file_id=file_id)
85
 
            mutter("added %r kind %r file_id={%s}" % (rf, kind, file_id))
 
85
            bzrlib.mutter("added %r kind %r file_id={%s}" % (rf, kind, file_id))
86
86
            count += 1 
87
87
 
88
88
            print 'added', quotefn(f)