diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-13 20:19:23 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-06-13 20:19:23 +0200 |
commit | 67db64c7c8c1813a4e22ed819846a69c6abefc2e (patch) | |
tree | b01c50f408ad05440bec6e0f52df0b5196d4e3d7 /module/plugins/hoster/EasyShareCom.py | |
parent | better retry function (diff) | |
download | pyload-67db64c7c8c1813a4e22ed819846a69c6abefc2e.tar.xz |
erniebs patches
Diffstat (limited to 'module/plugins/hoster/EasyShareCom.py')
-rw-r--r-- | module/plugins/hoster/EasyShareCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/EasyShareCom.py b/module/plugins/hoster/EasyShareCom.py index b389c5262..542b4367f 100644 --- a/module/plugins/hoster/EasyShareCom.py +++ b/module/plugins/hoster/EasyShareCom.py @@ -24,11 +24,11 @@ class EasyShareCom(Hoster): self.html = self.load(self.pyfile.url)
if re.search("Die von ihnen angeforderte Datei wurde gel\xc3\xb6scht.", self.html):
- self.offline();
+ self.offline()
self.pyfile.name = self.getFileName()
- self.download( self.getFileUrl() )
+ self.download(self.getFileUrl())
def getFileName(self):
|