From c09b4571686f4e45965e63ea4df98c6648d828bf Mon Sep 17 00:00:00 2001 From: pictuga Date: Thu, 19 Mar 2020 11:36:20 +0100 Subject: [PATCH] feeds: fix .dic code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug introduced recently… --- morss/feeds.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morss/feeds.py b/morss/feeds.py index d10dda5..4f51704 100644 --- a/morss/feeds.py +++ b/morss/feeds.py @@ -620,7 +620,7 @@ class Feed(object): if new is None: return - for attr in self.dic: + for attr in globals()[self.itemsClass].dic: try: setattr(item, attr, getattr(new, attr))