/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: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-07-09 22:51:22 UTC
  • mfrom: (7360.1.6 more-propose-fixes)
  • Revision ID: breezy.the.bot@gmail.com-20190709225122-u0bmatl57gs2e2vd
Fix a couple more issues in the propose plugin.

Merged from https://code.launchpad.net/~jelmer/brz/more-propose-fixes/+merge/369793

Show diffs side-by-side

added added

removed removed

Lines of Context:
348
348
                            '(Merging %s into %s)\n' %
349
349
                            (mp.get_source_branch_url(),
350
350
                             mp.get_target_branch_url()))
351
 
                        self.outf.writelines(
352
 
                            ['\t%s\n' % l
353
 
                             for l in mp.get_description().splitlines()])
 
351
                        description = mp.get_description()
 
352
                        if description:
 
353
                            self.outf.writelines(
 
354
                                ['\t%s\n' % l
 
355
                                 for l in description.splitlines()])
354
356
                        self.outf.write('\n')
355
357
 
356
358