/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

  • Committer: Jelmer Vernooij
  • Date: 2011-03-23 19:07:55 UTC
  • mto: (0.200.1150 trunk)
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@samba.org-20110323190755-mjdiolcq4mdwuc9v
Put determine_wants methods on InterRepo.

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):