~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/add.py

[merge] robertc's integration, updated tests to check for retcode=3

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
                warning("skipping %s (can't add file of kind '%s')", f, kind)
108
108
                continue
109
109
 
110
 
        mutter("smart add of %r, abs=%r" % (f, af))
 
110
        mutter("smart add of %r, abs=%r", f, af)
111
111
        
112
112
        if bzrlib.branch.is_control_file(af):
113
113
            raise ForbiddenFileError('cannot add control file %s' % f)
129
129
            mutter("branch root doesn't need to be added")
130
130
            sub_tree = False
131
131
        elif versioned:
132
 
            mutter("%r is already versioned" % f)
 
132
            mutter("%r is already versioned", f)
133
133
        elif sub_tree:
134
 
            mutter("%r is a bzr tree" %f)
 
134
            mutter("%r is a bzr tree", f)
135
135
        else:
136
136
            count += __add_one(branch, inv, rf, kind, reporter)
137
137
 
139
139
            for subf in os.listdir(af):
140
140
                subp = os.path.join(rf, subf)
141
141
                if subf == bzrlib.BZRDIR:
142
 
                    mutter("skip control directory %r" % subp)
 
142
                    mutter("skip control directory %r", subp)
143
143
                elif tree.is_ignored(subp):
144
 
                    mutter("skip ignored sub-file %r" % subp)
 
144
                    mutter("skip ignored sub-file %r", subp)
145
145
                else:
146
 
                    mutter("queue to add sub-file %r" % subp)
 
146
                    mutter("queue to add sub-file %r", subp)
147
147
                    file_list.append(branch.abspath(subp))
148
148
 
149
149
 
167
167
    count = __add_one(branch, inv, dirname(path), 'directory', reporter)
168
168
 
169
169
    entry = inv.add_path(path, kind=kind)
170
 
    mutter("added %r kind %r file_id={%s}" % (path, kind, entry.file_id))
 
170
    mutter("added %r kind %r file_id={%s}", path, kind, entry.file_id)
171
171
    reporter(path, kind, entry)
172
172
 
173
173
    return count + 1