diff options
author | spoob <spoob@gmx.de> | 2009-06-18 15:16:47 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-06-18 15:16:47 +0200 |
commit | a66fbfd2b39bcd98967c439060951e63e0532c0a (patch) | |
tree | dd4b693423b4e448055a6146f81d98882477519f /Plugins/GigasizeCom.py | |
parent | worked on gigasize.com Plugin (diff) | |
download | pyload-a66fbfd2b39bcd98967c439060951e63e0532c0a.tar.xz |
fixed some bugs
Diffstat (limited to 'Plugins/GigasizeCom.py')
-rw-r--r-- | Plugins/GigasizeCom.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Plugins/GigasizeCom.py b/Plugins/GigasizeCom.py index bf8b3d97e..edc92b2ba 100644 --- a/Plugins/GigasizeCom.py +++ b/Plugins/GigasizeCom.py @@ -53,11 +53,9 @@ class GigasizeCom(Plugin): if not self.want_reconnect: file_url_pattern = '<form action="(/getcgi.php\?t=.*)" method="post" id="formDownload">' search = re.search(file_url_pattern, self.html[1]) - print search if search: return "http://gigazise.com" + search.group(1) return "" - else: return False |