diff options
| -rw-r--r-- | module/plugins/internal/SimpleHoster.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index cfc9f2b43..69ed57ff8 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -155,8 +155,8 @@ class SimpleHoster(Hoster):      """      These patterns should be defined by each hoster:      FILE_INFO_PATTERN = r'(?P<N>file_name) (?P<S>file_size) (?P<U>units)' -    or FILE_NAME_INFO = r'(?P<N>file_name)' -    and FILE_SIZE_INFO = r'(?P<S>file_size) (?P<U>units)' +    or FILE_NAME_PATTERN = r'(?P<N>file_name)' +    and FILE_SIZE_PATTERN = r'(?P<S>file_size) (?P<U>units)'      FILE_OFFLINE_PATTERN = r'File (deleted|not found)'      TEMP_OFFLINE_PATTERN = r'Server maintainance'      """ | 
