/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/commitfromnews/committemplate.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-16 10:50:21 UTC
  • mfrom: (7164 work)
  • mto: This revision was merged to the branch mainline in revision 7165.
  • Revision ID: jelmer@jelmer.uk-20181116105021-xl419v2rh4aus1au
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
96
96
                    bugids.extend(_BUG_MATCH.findall(line))
97
97
                self.commit.revprops['bugs'] = \
98
98
                    bugtracker.encode_fixes_bug_urls(
99
 
                        [bt.get_bug_url(bugid) for bugid in bugids])
 
99
                        [(bt.get_bug_url(bugid), bugtracker.FIXED)
 
100
                         for bugid in bugids])
100
101
            return self.merge_message(''.join(new_lines))
101
102
 
102
103
    def merge_message(self, new_message):