Simplify compat.fix_text

This commit is contained in:
ines 2017-04-23 21:05:39 +02:00
parent d2436dc17b
commit 401045433c

View File

@ -23,6 +23,8 @@ is_windows = sys.platform.startswith('win')
is_linux = sys.platform.startswith('linux')
is_osx = sys.platform == 'darwin'
fix_text = ftfy.fix_text
if is_python2:
bytes_ = str
@ -39,9 +41,6 @@ elif is_python3:
json_dumps = lambda data: ujson.dumps(data, indent=2)
fix_text = lambda text: ftfy.fix_text(text)
def symlink_to(orig, dest):
if is_python2 and is_windows:
import subprocess