From 25026a4e29eea01f4a8947797432b7857a94f034 Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Sun, 29 Mar 2015 19:02:02 -0400 Subject: [PATCH] Fix break of missing entry property. --- append.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/append.py b/append.py index 5dbaa2b..2bbd995 100755 --- a/append.py +++ b/append.py @@ -156,7 +156,7 @@ def __append_itunes(config, entry, output, suffix, base_url): 'size' : size, 'subtitle' : ''.join(soup.contents[0].findAll(text = True)), 'summary' : summary, - 'duration' : entry.itunes_duration, + 'duration' : '0:00', 'title_suffix': config['title_suffix'], 'author': config['author'] }) logging.info('Inserted new %s item.' % suffix)