diff options
author | fragonib <devnull@localhost> | 2011-05-17 21:58:24 +0200 |
---|---|---|
committer | fragonib <devnull@localhost> | 2011-05-17 21:58:24 +0200 |
commit | 52de45a97f63efb1b5e3843ed3602bc04b058dd0 (patch) | |
tree | b7d116a1cb6d664614ae16c7e7df9bc504ee72d0 /module/plugins/hoster/UploadStationCom.py | |
parent | convert sizes to ints (diff) | |
download | pyload-52de45a97f63efb1b5e3843ed3602bc04b058dd0.tar.xz |
Fixes commit 1478
Diffstat (limited to 'module/plugins/hoster/UploadStationCom.py')
-rw-r--r-- | module/plugins/hoster/UploadStationCom.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/UploadStationCom.py b/module/plugins/hoster/UploadStationCom.py index 65a44b765..a4695e30a 100644 --- a/module/plugins/hoster/UploadStationCom.py +++ b/module/plugins/hoster/UploadStationCom.py @@ -43,7 +43,7 @@ class UploadStationCom(Hoster): __author_name__ = ("fragonib")
__author_mail__ = ("fragonib[AT]yahoo[DOT]es")
- FILE_OFFLINE_PATTERN = r'''<h1>File not available</h1>|<b>The file could not be found\. Please check the download link'''
+ FILE_OFFLINE_PATTERN = r'''<h1>File not available</h1>|<h1>File is not available</h1>'''
FILE_TITLE_PATTERN = r'''<div class=\"download_item\">(.*?)</div>'''
FILE_SIZE_PATTERN = r'''<div><span>File size: <b>(.*?) (KB|MB|GB)</b>'''
CAPTCHA_PRESENT_TOKEN = '<div class="speedBox" id="showCaptcha" style="display:none;">'
|