Skip to content
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.

Commit

Permalink
Update podcast.py
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbailey authored Dec 17, 2016
1 parent 72efaf8 commit 3041ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion podcast.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def getURL(url):
for index, row in urls.iterrows():
if row['urlfilesize'][0] != 'nourl':
rss += "<item>"
rss += "<title>" + row['Song'] + "</title>"
rss += "<title>" + escape(row['Song']) + "</title>"
rss += "<pubDate>" + timestamp + "</pubDate>"
rss += "<enclosure url=\"" + str(row['urlfilesize'][0]) + "\" length=\"" + str(row['urlfilesize'][1]) + "\" type=\"video/mp4\" />"
rss += "</item>"
Expand Down

0 comments on commit 3041ba1

Please sign in to comment.