From a5c62d6adfaca6a2906340c22262af6f3de80f56 Mon Sep 17 00:00:00 2001 From: Farmaan Date: Tue, 3 Apr 2018 00:03:13 +0530 Subject: [PATCH] Fixes invalid description if description and itunes subtitle exist --- feedparser/mixin.py | 1 + 1 file changed, 1 insertion(+) diff --git a/feedparser/mixin.py b/feedparser/mixin.py index 5f97dc804..79fe7e30a 100644 --- a/feedparser/mixin.py +++ b/feedparser/mixin.py @@ -577,6 +577,7 @@ def pop(self, element, stripWhitespace=1): elif (self.infeed or self.insource):# and (not self.intextinput) and (not self.inimage): context = self._getContext() if element == 'description': + context[element] = output element = 'subtitle' context[element] = output if element == 'link':