talklib 2.0.5__tar.gz → 2.0.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {talklib-2.0.5/src/talklib.egg-info → talklib-2.0.6}/PKG-INFO +1 -1
- {talklib-2.0.5 → talklib-2.0.6}/pyproject.toml +1 -1
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/pod.py +5 -0
- {talklib-2.0.5 → talklib-2.0.6/src/talklib.egg-info}/PKG-INFO +1 -1
- {talklib-2.0.5 → talklib-2.0.6}/LICENSE.txt +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/README.md +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/requirements.txt +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/setup.cfg +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/__init__.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/ev.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/ffmpeg.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/notify.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/show.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib/utils.py +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib.egg-info/SOURCES.txt +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib.egg-info/dependency_links.txt +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib.egg-info/requires.txt +0 -0
- {talklib-2.0.5 → talklib-2.0.6}/src/talklib.egg-info/top_level.txt +0 -0
|
@@ -185,6 +185,11 @@ class Episode(BaseModel):
|
|
|
185
185
|
title.text = self.episode_title
|
|
186
186
|
item.append(title)
|
|
187
187
|
|
|
188
|
+
# Drupal needs to see a category element on every episode that matches the name of the program
|
|
189
|
+
channel_title_category_element = ET.Element("category")
|
|
190
|
+
channel_title_category_element.text = root.find('title').text
|
|
191
|
+
item.append(channel_title_category_element)
|
|
192
|
+
|
|
188
193
|
pubDate = ET.Element('pubDate')
|
|
189
194
|
pubDate.text = self.pub_date()
|
|
190
195
|
item.append(pubDate)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|