mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-16 01:45:08 +00:00
e56303798c
Initial SickGear for Python 3.
6 lines
119 B
Python
6 lines
119 B
Python
import sys
|
|
|
|
if sys.version_info < (3,):
|
|
string_types = (basestring,) # noqa: F821
|
|
else:
|
|
string_types = (str,)
|