svpino / rfeed

Extensible RSS 2.0 Feed Generator written in Python
MIT License
185 stars 41 forks source link

Fix for Python3 compatibility #5

Closed nathangrigg closed 9 years ago

nathangrigg commented 9 years ago

In Python3, dict.items() is not a list, so you cannot combine them using addition. But itertools.chain will combine them in both Python2 and Python3.