~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/hooks.py

  • Committer: John Arbash Meinel
  • Date: 2009-07-08 14:37:25 UTC
  • mfrom: (4516 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4517.
  • Revision ID: john@arbash-meinel.com-20090708143725-sc9sjy3mz4cxwxzz
Merge bzr.dev 4516

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