From 6735cc9e5e1b1734d8f294b9df763daecd66269a Mon Sep 17 00:00:00 2001 From: Ruud Burger Date: Wed, 17 Aug 2011 17:37:02 +0200 Subject: [PATCH] Correct NZBMatrix download url --- couchpotato/core/providers/nzb/nzbmatrix/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/providers/nzb/nzbmatrix/main.py b/couchpotato/core/providers/nzb/nzbmatrix/main.py index 952f4fc2..9c227243 100644 --- a/couchpotato/core/providers/nzb/nzbmatrix/main.py +++ b/couchpotato/core/providers/nzb/nzbmatrix/main.py @@ -111,7 +111,7 @@ class NZBMatrix(NZBProvider, RSS): return results def getApiExt(self): - return '&username=%s&apikey=%s' % (self.conf('username'), self.conf('apikey')) + return '&username=%s&apikey=%s' % (self.conf('username'), self.conf('api_key')) def isEnabled(self): return NZBProvider.isEnabled(self) and self.conf('username') and self.conf('api_key')