summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/GoogledriveCom.py
diff options
context:
space:
mode:
Diffstat (limited to 'module/plugins/hoster/GoogledriveCom.py')
-rw-r--r--module/plugins/hoster/GoogledriveCom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/GoogledriveCom.py b/module/plugins/hoster/GoogledriveCom.py
index 8d69457ed..7b8552ecd 100644
--- a/module/plugins/hoster/GoogledriveCom.py
+++ b/module/plugins/hoster/GoogledriveCom.py
@@ -39,7 +39,7 @@ class GoogledriveCom(SimpleHoster):
def handle_free(self, pyfile):
for _i in xrange(2):
- m = re.search(self.LINK_FREE_PATTERN, self.html)
+ m = re.search(self.LINK_FREE_PATTERN, self.data)
if m is None:
return
@@ -48,7 +48,7 @@ class GoogledriveCom(SimpleHoster):
dl = self.isdownload(link, redirect=False)
if not dl:
- self.html = self.load(link)
+ self.data = self.load(link)
else:
self.link = dl
break