diff options
author | 2015-05-04 21:31:34 +0200 | |
---|---|---|
committer | 2015-05-04 21:31:34 +0200 | |
commit | f076e6c4d52bae232aa508c3afb6166d7ea9af2d (patch) | |
tree | 3528adf829267eca170d6af819b11e074032ea24 /module/plugins/hoster/GoogledriveCom.py | |
parent | [SizedriveCom] Cleanup (diff) | |
download | pyload-f076e6c4d52bae232aa508c3afb6166d7ea9af2d.tar.xz |
[GoogledriveCom][OneFichierCom][UlozTo] Reset DISPOSITION to False
Diffstat (limited to 'module/plugins/hoster/GoogledriveCom.py')
-rw-r--r-- | module/plugins/hoster/GoogledriveCom.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/plugins/hoster/GoogledriveCom.py b/module/plugins/hoster/GoogledriveCom.py index 66f36e6c0..09c54a8da 100644 --- a/module/plugins/hoster/GoogledriveCom.py +++ b/module/plugins/hoster/GoogledriveCom.py @@ -12,7 +12,7 @@ from module.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"' |