mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
Start adding feed support
This commit is contained in:
8
Source/Libs/feedgen/compat.py
Normal file
8
Source/Libs/feedgen/compat.py
Normal file
@ -0,0 +1,8 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
import sys
|
||||
|
||||
if sys.version_info[0] >= 3:
|
||||
string_types = str
|
||||
else:
|
||||
string_types = basestring # noqa: F821
|
Reference in New Issue
Block a user