summaryrefslogtreecommitdiffstats
path: root/module/plugins/hoster/GoogledriveCom.py
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-01 04:55:17 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-01 04:55:17 +0200
commit25d5726d4953b93a2e286fd6af8d4ead20670ba6 (patch)
tree9d38f6942af2fadc094a75dd43699051f356b4d7 /module/plugins/hoster/GoogledriveCom.py
parent[AntiVirus] Folder support (diff)
downloadpyload-25d5726d4953b93a2e286fd6af8d4ead20670ba6.tar.xz
A lot of plugin code cosmetics
Diffstat (limited to 'module/plugins/hoster/GoogledriveCom.py')
-rw-r--r--module/plugins/hoster/GoogledriveCom.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/module/plugins/hoster/GoogledriveCom.py b/module/plugins/hoster/GoogledriveCom.py
index 381bd24dc..c6b84b776 100644
--- a/module/plugins/hoster/GoogledriveCom.py
+++ b/module/plugins/hoster/GoogledriveCom.py
@@ -41,17 +41,16 @@ class GoogledriveCom(SimpleHoster):
m = re.search(self.LINK_FREE_PATTERN, self.html)
if m is None:
- self.error(_("Free download link not found"))
+ return
+ link = self.fixurl(link, "https://docs.google.com/")
+ direct_link = self.direct_link(link, False)
+
+ if not direct_link:
+ self.html = self.load(link)
else:
- link = self.fixurl(link, "https://docs.google.com/")
- direct_link = self.direct_link(link, False)
-
- if not direct_link:
- self.html = self.load(link)
- else:
- self.link = direct_link
- break
+ self.link = direct_link
+ break
getInfo = create_getInfo(GoogledriveCom)