|
@@ -53,7 +53,8 @@ url = 'https://usn.ubuntu.com/rss.xml'
|
|
|
|
|
|
if args.fresh:
|
|
if args.fresh:
|
|
data = feedparser.parse(url)
|
|
data = feedparser.parse(url)
|
|
- del( data['bozo_exception'])
|
|
|
|
|
|
+ if 'bozo_exception' in data:
|
|
|
|
+ del( data['bozo_exception'])
|
|
|
|
|
|
with open('rss.json', 'w') as fp:
|
|
with open('rss.json', 'w') as fp:
|
|
json.dump(data, fp)
|
|
json.dump(data, fp)
|