/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 bzrlib/hooks.py

  • Committer: Martin Pool
  • Date: 2009-07-17 10:38:41 UTC
  • mfrom: (4536 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4558.
  • Revision ID: mbp@sourcefrog.net-20090717103841-z35onk04bkiw7zb6
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
            deprecated_string = 'Not deprecated'
224
224
        strings.append('Deprecated in: %s' % deprecated_string)
225
225
        strings.append('')
226
 
        strings.extend(textwrap.wrap(self.__doc__))
 
226
        strings.extend(textwrap.wrap(self.__doc__,
 
227
            break_long_words=False))
227
228
        strings.append('')
228
229
        return '\n'.join(strings)
229
230