/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/utextwrap.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-21 23:03:42 UTC
  • mto: This revision was merged to the branch mainline in revision 6996.
  • Revision ID: jelmer@jelmer.uk-20180621230342-yl9vbifwc2x4ltvt
Avoid text_type()

Show diffs side-by-side

added added

removed removed

Lines of Context:
217
217
        return lines
218
218
 
219
219
    def _split(self, text):
220
 
        chunks = textwrap.TextWrapper._split(self, text_type(text))
 
220
        chunks = textwrap.TextWrapper._split(self, text)
221
221
        cjk_split_chunks = []
222
222
        for chunk in chunks:
223
223
            prev_pos = 0