~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Lalo Martins
  • Date: 2005-09-09 10:58:51 UTC
  • mto: (1185.1.22)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: lalo@exoweb.net-20050909105851-25aa36ea27f4ce7b
creating the new branch constructors

Show diffs side-by-side

added added

removed removed

Lines of Context:
248
248
        if not work_tree.has_id(file_id):
249
249
            if verbose:
250
250
                print('deleted %s%s' % (path, kind_marker(entry.kind)))
251
 
            any_changes = True
 
251
                any_changes = True
252
252
            mutter("    file is missing, removing from inventory")
253
253
            missing_ids.append(file_id)
254
254
            continue
310
310
            else:
311
311
                print 'renamed', marked
312
312
                any_changes = True
313
 
        elif old_ie != entry:
314
 
            any_changes = True
315
 
 
 
313
                        
316
314
    return missing_ids, inv, any_changes
317
315
 
318
316