~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/commit.py

  • Committer: Martin Pool
  • Date: 2005-09-07 23:14:30 UTC
  • mto: (1092.2.12) (974.1.76) (1185.8.2)
  • mto: This revision was merged to the branch mainline in revision 1390.
  • Revision ID: mbp@sourcefrog.net-20050907231430-097abbaee94ad75b
- docstring fix from Magnus Therning

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