/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 breezy/plugins/propose/cmds.py

  • Committer: Jelmer Vernooij
  • Date: 2019-01-03 02:35:46 UTC
  • mfrom: (0.431.67 trunk)
  • mto: This revision was merged to the branch mainline in revision 7239.
  • Revision ID: jelmer@jelmer.uk-20190103023546-pryb5dotaw5ecbbt
Merge lp:brz-propose.

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
        else:
224
224
            target = _mod_branch.Branch.open(submit_branch)
225
225
        hoster = _mod_propose.get_hoster(branch)
226
 
        mp = hoster.get_proposal(branch, target)
227
 
        self.outf.write(gettext('Merge proposal: %s\n') % mp.url)
 
226
        for mp in hoster.iter_proposals(branch, target):
 
227
            self.outf.write(gettext('Merge proposal: %s\n') % mp.url)
228
228
 
229
229
 
230
230
class cmd_github_login(Command):