mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-12 02:22:56 +08:00
12 lines
164 B
Python
12 lines
164 B
Python
|
import sys
|
||
|
|
||
|
PY3 = sys.version_info[0] >= 3
|
||
|
|
||
|
if PY3:
|
||
|
def u(s):
|
||
|
return s
|
||
|
else:
|
||
|
# Unicode-like literals
|
||
|
def u(s):
|
||
|
return s.decode('utf-8')
|