From f91707bfbebbe10a989a15de5c5c6d6ad9cf9fd9 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 14 Jun 2013 21:51:41 +0200 Subject: [PATCH] Uncomment debug code --- couchpotato/core/plugins/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/plugins/base.py b/couchpotato/core/plugins/base.py index ef4563f4..0c4f80a0 100644 --- a/couchpotato/core/plugins/base.py +++ b/couchpotato/core/plugins/base.py @@ -241,7 +241,7 @@ class Plugin(object): def getCache(self, cache_key, url = None, **kwargs): cache_key = md5(ss(cache_key)) - cache = None #Env.get('cache').get(cache_key) + cache = Env.get('cache').get(cache_key) if cache: if not Env.get('dev'): log.debug('Getting cache %s', cache_key) return cache