diff options
author | 2014-11-01 22:20:06 +0100 | |
---|---|---|
committer | 2014-11-01 22:20:06 +0100 | |
commit | 11fcb4ebb1d3f38e8a49f316308520ebcf8cf658 (patch) | |
tree | 6ec60a31f2a3297e375999ec22ae60f091066739 | |
parent | [ZippyshareCom] Fix get_checksum (thx zapp-brannigan) (diff) | |
download | pyload-11fcb4ebb1d3f38e8a49f316308520ebcf8cf658.tar.xz |
[SimpleHoster] Fix typo
-rw-r--r-- | module/plugins/internal/SimpleHoster.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/internal/SimpleHoster.py b/module/plugins/internal/SimpleHoster.py index e601759cf..1d85dc01b 100644 --- a/module/plugins/internal/SimpleHoster.py +++ b/module/plugins/internal/SimpleHoster.py @@ -294,7 +294,7 @@ class SimpleHoster(Hoster): self.req.http.c.setopt(FOLLOWLOCATION, 1) if parseFileInfo(self, url, html)[2] != 2: - try + try: return re.search(r"Location\s*:\s*(.+)", self.req.http.header, re.I).group(1) except: pass |