From 491dc6943323232f3d06003c950718c89316616d Mon Sep 17 00:00:00 2001 From: Walter Purcaro Date: Sat, 10 Oct 2015 12:24:47 +0200 Subject: Spare code cosmetics --- module/plugins/hoster/SmoozedCom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/plugins/hoster/SmoozedCom.py') diff --git a/module/plugins/hoster/SmoozedCom.py b/module/plugins/hoster/SmoozedCom.py index e864bb2c0..29768d50b 100644 --- a/module/plugins/hoster/SmoozedCom.py +++ b/module/plugins/hoster/SmoozedCom.py @@ -59,4 +59,4 @@ class SmoozedCom(MultiHoster): if not "location" in header: self.fail(_("Unable to initialize download")) else: - self.link = header['location'][-1] if isinstance(header['location'], list) else header['location'] + self.link = header.get('location')[-1] if isinstance(header.get('location'), list) else header.get('location') -- cgit v1.2.3