diff options
author | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-06 00:31:46 +0200 |
---|---|---|
committer | Walter Purcaro <vuolter@users.noreply.github.com> | 2015-05-06 00:31:46 +0200 |
commit | 8d60ae2be14be54d4f4d4775fe696a82f84a000c (patch) | |
tree | 57e3da3c2ac9e18d04366c833259cee39635dc7b /pyload/plugin/hoster/GoogledriveCom.py | |
parent | Auto choose webserver (diff) | |
parent | [SimpleHoster] Fallback option (diff) | |
download | pyload-8d60ae2be14be54d4f4d4775fe696a82f84a000c.tar.xz |
Merge branch 'stable' into 0.4.10
Conflicts:
pyload/plugin/addon/AntiVirus.py
pyload/plugin/addon/ExtractArchive.py
pyload/plugin/hoster/GoogledriveCom.py
pyload/plugin/hoster/OneFichierCom.py
pyload/plugin/hoster/UlozTo.py
pyload/plugin/hoster/YadiSk.py
pyload/plugin/hoster/ZippyshareCom.py
pyload/plugin/internal/SimpleHoster.py
pyload/plugin/internal/XFSCrypter.py
pyload/plugin/internal/XFSHoster.py
Diffstat (limited to 'pyload/plugin/hoster/GoogledriveCom.py')
-rw-r--r-- | pyload/plugin/hoster/GoogledriveCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/pyload/plugin/hoster/GoogledriveCom.py b/pyload/plugin/hoster/GoogledriveCom.py index 6e38db427..db4ee788a 100644 --- a/pyload/plugin/hoster/GoogledriveCom.py +++ b/pyload/plugin/hoster/GoogledriveCom.py @@ -12,7 +12,7 @@ from pyload.utils import html_unescape class GoogledriveCom(SimpleHoster): __name = "GoogledriveCom" __type = "hoster" - __version = "0.07" + __version = "0.08" __pattern = r'https?://(?:www\.)?drive\.google\.com/file/.+' __config = [("use_premium", "bool", "Use premium account if available", True)] @@ -22,6 +22,8 @@ class GoogledriveCom(SimpleHoster): __authors = [("zapp-brannigan", "fuerst.reinje@web.de")] + DISPOSITION = False #: Remove in 0.4.10 + NAME_PATTERN = r'"og:title" content="(?P<N>.*?)">' OFFLINE_PATTERN = r'align="center"><p class="errorMessage"' |