/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 versionedfiles.py

Add check-all target.

Show diffs side-by-side

added added

removed removed

Lines of Context:
48
48
 
49
49
    def iterkeys(self):
50
50
        for sha in self.object_store:
51
 
            if type(sha) == Commit:
 
51
            if isinstance(self.object_store[sha], Commit):
52
52
                yield (sha,)
53
53
 
54
54
    def keys(self):