feeds: fix .dic code

Bug introduced recently…
master
pictuga 2020-03-19 11:36:20 +01:00
parent b47e40246c
commit c09b457168
1 changed files with 1 additions and 1 deletions

View File

@ -620,7 +620,7 @@ class Feed(object):
if new is None: if new is None:
return return
for attr in self.dic: for attr in globals()[self.itemsClass].dic:
try: try:
setattr(item, attr, getattr(new, attr)) setattr(item, attr, getattr(new, attr))