diff options
author | 2015-07-28 19:15:28 +0200 | |
---|---|---|
committer | 2015-07-28 19:15:28 +0200 | |
commit | 9e44724d6dda3e1f47cf4d6de4b3e521a244ba4b (patch) | |
tree | 258736a130c3b227ff2c2d6c0ef95a87e6ce8c44 /module/plugins/hoster/GoogledriveCom.py | |
parent | Fix http://forum.pyload.org/viewtopic.php?f=12&t=4410 (diff) | |
download | pyload-9e44724d6dda3e1f47cf4d6de4b3e521a244ba4b.tar.xz |
Fix content-disposition
Diffstat (limited to 'module/plugins/hoster/GoogledriveCom.py')
-rw-r--r-- | module/plugins/hoster/GoogledriveCom.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/module/plugins/hoster/GoogledriveCom.py b/module/plugins/hoster/GoogledriveCom.py index bdcfc5a39..903b5361e 100644 --- a/module/plugins/hoster/GoogledriveCom.py +++ b/module/plugins/hoster/GoogledriveCom.py @@ -13,7 +13,7 @@ from module.utils import html_unescape class GoogledriveCom(SimpleHoster): __name__ = "GoogledriveCom" __type__ = "hoster" - __version__ = "0.13" + __version__ = "0.14" __status__ = "testing" __pattern__ = r'https?://(?:www\.)?(drive|docs)\.google\.com/(file/d/\w+|uc\?.*id=)' @@ -24,8 +24,6 @@ class GoogledriveCom(SimpleHoster): __authors__ = [("zapp-brannigan", "fuerst.reinje@web.de")] - DISPOSITION = False #: Remove in 0.4.10 - NAME_PATTERN = r'(?:<title>|class="uc-name-size".*>)(?P<N>.+?)(?: - Google Drive</title>|</a> \()' OFFLINE_PATTERN = r'align="center"><p class="errorMessage"' |