/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-07-07 00:40:41 UTC
  • mto: This revision was merged to the branch mainline in revision 7371.
  • Revision ID: jelmer@jelmer.uk-20190707004041-2ewh2c2pblmyndcy
Cope with description being None.

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