No need to try and cach htmldata

This commit is contained in:
Ruud
2014-01-22 23:31:45 +01:00
parent 18c64e493b
commit ca94d48f8b

View File

@@ -95,7 +95,7 @@ class Provider(Plugin):
def getHTMLData(self, url, **kwargs):
cache_key = '%s%s' % (md5(url), md5('%s' % kwargs.get('data', {})))
cache_key = md5(url)
return self.getCache(cache_key, url, **kwargs)