1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-02-01 03:43:04 +00:00

Removes if statement for python 2

This commit is contained in:
Jake Soenneker 2020-12-15 22:32:47 -06:00
parent 4f7d436254
commit d7333d9172

View file

@ -15,11 +15,7 @@ import json
import six.moves.urllib.parse
import sys
if sys.version_info[0] >= 3:
import html
else:
from six.moves import html_parser
html = html_parser.HTMLParser()
import html
from zipfile import ZipFile
from babelfish import language_converters