/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to commit.py

Fix removing entries.

Show diffs side-by-side

added added

removed removed

Lines of Context:
107
107
 
108
108
    def finish_inventory(self):
109
109
        # eliminate blobs that were removed
110
 
        for path, entry in self._blobs:
 
110
        for path, entry in self._blobs.iteritems():
111
111
            if entry is None:
112
112
                del self._blobs[path]
113
113