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

  • Committer: Jelmer Vernooij
  • Date: 2019-01-02 21:59:47 UTC
  • mfrom: (0.431.64 trunk)
  • mto: This revision was merged to the branch mainline in revision 7239.
  • Revision ID: jelmer@jelmer.uk-20190102215947-bv6tjqf5rg71id76
Merge lp:brz-propose.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
        """Set the description of the merge proposal."""
109
109
        raise NotImplementedError(self.set_description)
110
110
 
 
111
    def get_source_branch_url(self):
 
112
        """Return the source branch."""
 
113
        raise NotImplementedError(self.get_source_branch_url)
 
114
 
 
115
    def get_target_branch_url(self):
 
116
        """Return the target branch."""
 
117
        raise NotImplementedError(self.get_target_branch_url)
 
118
 
111
119
    def close(self):
112
120
        """Close the merge proposal (without merging it)."""
113
121
        raise NotImplementedError(self.close)