diff options
Diffstat (limited to 'module/plugins/hoster/TusfilesNet.py')
-rw-r--r-- | module/plugins/hoster/TusfilesNet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/hoster/TusfilesNet.py b/module/plugins/hoster/TusfilesNet.py index cbab4e856..3bc5b104a 100644 --- a/module/plugins/hoster/TusfilesNet.py +++ b/module/plugins/hoster/TusfilesNet.py @@ -40,6 +40,6 @@ class TusfilesNet(XFSHoster): return super(TusfilesNet, self).download(url, *args, **kwargs) except BadHeader, e: - if e.code is 503: + if e.code == 503: self.multiDL = False raise Retry("503") |