From 196b27092eb2e1014feba7f4e43f669bd90117d3 Mon Sep 17 00:00:00 2001 From: Ruud Date: Thu, 2 Aug 2012 22:14:35 +0200 Subject: [PATCH] Use proper age param for nzbmatrix. fix #620 --- 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 203ada1d..c6c5be91 100644 --- a/couchpotato/core/providers/nzb/nzbmatrix/main.py +++ b/couchpotato/core/providers/nzb/nzbmatrix/main.py @@ -43,7 +43,7 @@ class NZBMatrix(NZBProvider, RSS): 'username': self.conf('username'), 'apikey': self.conf('api_key'), 'searchin': 'weblink', - 'age': Env.setting('retention', section = 'nzb'), + 'maxage': Env.setting('retention', section = 'nzb'), 'english': self.conf('english_only'), }) url = "%s?%s" % (self.urls['search'], arguments)