~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

  • Committer: Jelmer Vernooij
  • Date: 2012-03-11 17:03:05 UTC
  • mto: This revision was merged to the branch mainline in revision 6494.
  • Revision ID: jelmer@samba.org-20120311170305-ziptqavg9fpb6nwg
Fix test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1198
1198
        :return: Iterator over tuples with revision id, result and keys
1199
1199
        """
1200
1200
        for revid in revision_ids:
1201
 
            (result, key) = self.verify_revision_signature(revid)
 
1201
            (result, key) = self.verify_revision_signature(revid, gpg_strategy)
1202
1202
            yield revid, result, key
1203
1203
 
1204
1204
    def has_signature_for_revision_id(self, revision_id):