summaryrefslogtreecommitdiffstats
path: root/module/plugins/internal
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 20:50:14 +0200
committerGravatar Walter Purcaro <vuolter@users.noreply.github.com> 2015-10-18 20:50:14 +0200
commita3ab043871d301c519e3e4faa0271a42c2a1c37f (patch)
tree91d09a8c99b64a2e302071ce2c7234b6fe17627c /module/plugins/internal
parentVersion up for all plugins (diff)
parentFixing an unbalaced parenthesis in OFFLINE_PATTERN (diff)
downloadpyload-a3ab043871d301c519e3e4faa0271a42c2a1c37f.tar.xz
Merge pull request #2039 from joberreiter/patch-2
[internal/XFSCrypter] Fixing an unbalaced parenthesis in OFFLINE_PATTERN
Diffstat (limited to 'module/plugins/internal')
-rw-r--r--module/plugins/internal/XFSCrypter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/XFSCrypter.py b/module/plugins/internal/XFSCrypter.py
index b8806b231..327834dab 100644
--- a/module/plugins/internal/XFSCrypter.py
+++ b/module/plugins/internal/XFSCrypter.py
@@ -28,7 +28,7 @@ class XFSCrypter(SimpleCrypter):
NAME_PATTERN = r'<[Tt]itle>.*?\: (?P<N>.+) folder</[Tt]itle>'
LINK_PATTERN = r'<(?:td|TD).*?>\s*(?:<.+>\s*)?<a href="(.+?)".*?>.+?(?:</a>)?\s*(?:<.+>\s*)?</(?:td|TD)>'
- OFFLINE_PATTERN = r'>\s*(No such user|\w+ (Not Found|file (was|has been) removed|no longer available)'
+ OFFLINE_PATTERN = r'>\s*(No such user|\w+ (Not Found|file (was|has been) removed|no longer available))'
TEMP_OFFLINE_PATTERN = r'>\s*\w+ server (is in )?(maintenance|maintainance)'