summaryrefslogtreecommitdiffstats
path: root/feedgen/compat.py
blob: e9044b055a8d958153dc7a3eef7ebe8ffb25f564 (plain)
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

import sys

if sys.version_info[0] >= 3:
    string_types = str
else:
    string_types = basestring  # noqa: F821