mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-01-26 12:53:04 -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')
|