diff options
author | Walter Purcaro <vuolter@gmail.com> | 2014-04-11 12:26:05 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2014-04-11 12:26:05 +0200 |
commit | 4d978dedd16418a4e7d8c81bd819a6a5fa432057 (patch) | |
tree | a347dae567c7e254b41df58e029f7bccfd5603a8 /module/plugins/hoster/UploadingCom.py | |
parent | Fix __pattern__ www (diff) | |
download | pyload-4d978dedd16418a4e7d8c81bd819a6a5fa432057.tar.xz |
Use pyfile instead self.pyfile
Merges vuolter/pyload@b7f6e2e
Diffstat (limited to 'module/plugins/hoster/UploadingCom.py')
-rw-r--r-- | module/plugins/hoster/UploadingCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/UploadingCom.py b/module/plugins/hoster/UploadingCom.py index 9bb526506..c6a8a1231 100644 --- a/module/plugins/hoster/UploadingCom.py +++ b/module/plugins/hoster/UploadingCom.py @@ -44,8 +44,8 @@ class UploadingCom(SimpleHoster): self.req.cj.setCookie("uploading.com", "setlang", "en") self.req.cj.setCookie("uploading.com", "_lang", "en") - if not "/get/" in self.pyfile.url: - self.pyfile.url = self.pyfile.url.replace("/files", "/files/get") + if not "/get/" in pyfile.url: + pyfile.url = pyfile.url.replace("/files", "/files/get") self.html = self.load(pyfile.url, decode=True) self.file_info = self.getFileInfo() |