Merge "Replace textwrap with fast standard code"

This commit is contained in:
Jenkins
2016-01-06 22:58:01 +00:00
committed by Gerrit Code Review

View File

@@ -23,7 +23,6 @@ import base64
import errno import errno
import hashlib import hashlib
import logging import logging
import textwrap
import zlib import zlib
from debtcollector import removals from debtcollector import removals
@@ -242,7 +241,7 @@ def token_to_cms(signed_text):
copy_of_text = signed_text.replace('-', '/') copy_of_text = signed_text.replace('-', '/')
lines = ['-----BEGIN CMS-----'] lines = ['-----BEGIN CMS-----']
lines += textwrap.wrap(copy_of_text, 64) lines += [copy_of_text[n:n + 64] for n in range(0, len(copy_of_text), 64)]
lines.append('-----END CMS-----\n') lines.append('-----END CMS-----\n')
return '\n'.join(lines) return '\n'.join(lines)