diff options
| author | 2014-08-30 00:56:41 +0200 | |
|---|---|---|
| committer | 2014-08-30 00:56:41 +0200 | |
| commit | a845e525eee9dae5089b8f7a5e7e27770725f15f (patch) | |
| tree | b060c81a06b4abd3589e2cd538dee40afa00ed7c /module | |
| parent | Fix wait for UptoBox (diff) | |
| download | pyload-a845e525eee9dae5089b8f7a5e7e27770725f15f.tar.xz | |
Update UploadingCom.py
Diffstat (limited to 'module')
| -rw-r--r-- | module/plugins/hoster/UploadingCom.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/module/plugins/hoster/UploadingCom.py b/module/plugins/hoster/UploadingCom.py index ac7226ec7..45ab1d4cd 100644 --- a/module/plugins/hoster/UploadingCom.py +++ b/module/plugins/hoster/UploadingCom.py @@ -11,7 +11,7 @@ from module.plugins.internal.SimpleHoster import SimpleHoster, create_getInfo, t  class UploadingCom(SimpleHoster):      __name__ = "UploadingCom"      __type__ = "hoster" -    __version__ = "0.35" +    __version__ = "0.36"      __pattern__ = r'http://(?:www\.)?uploading\.com/files/(?:get/)?(?P<ID>[\w\d]+)' @@ -21,7 +21,7 @@ class UploadingCom(SimpleHoster):      FILE_NAME_PATTERN = r'id="file_title">(?P<N>.+)</'      FILE_SIZE_PATTERN = r'size tip_container">(?P<S>[\d.]+) (?P<U>\w+)<' -    OFFLINE_PATTERN = r'Page not found!' +    OFFLINE_PATTERN = r'(Page|file) not found'      def process(self, pyfile): | 
