diff options
author | 2014-10-04 22:46:13 +0200 | |
---|---|---|
committer | 2014-10-04 22:46:13 +0200 | |
commit | e460158ca521afe0540c9c53b91806b31f307217 (patch) | |
tree | 174eaa0205dd43371f49f4ccdabf0e70cdb0b9df /module/plugins/hoster/DropboxCom.py | |
parent | [OboomCom] Fix account login (diff) | |
download | pyload-e460158ca521afe0540c9c53b91806b31f307217.tar.xz |
Fix broken plugins after SH_COOKIES -> COOKIES
Diffstat (limited to 'module/plugins/hoster/DropboxCom.py')
-rw-r--r-- | module/plugins/hoster/DropboxCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/DropboxCom.py b/module/plugins/hoster/DropboxCom.py index ab63fc801..07e251946 100644 --- a/module/plugins/hoster/DropboxCom.py +++ b/module/plugins/hoster/DropboxCom.py @@ -8,7 +8,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo class DropboxCom(SimpleHoster): __name__ = "DropboxCom" __type__ = "hoster" - __version__ = "0.01" + __version__ = "0.02" __pattern__ = r'https?://(?:www\.)?dropbox\.com/.+' @@ -22,7 +22,7 @@ class DropboxCom(SimpleHoster): OFFLINE_PATTERN = r'<title>Dropbox - (404|Shared link error)<' - SH_COOKIES = [(".dropbox.com", "lang", "en")] + COOKIES = [(".dropbox.com", "lang", "en")] def setup(self): |