diff options
author | Jeix <devnull@localhost> | 2012-09-13 18:36:39 +0200 |
---|---|---|
committer | Jeix <devnull@localhost> | 2012-09-13 18:36:39 +0200 |
commit | 38ace48574d7ec1d5dec1f311e4ef73233943313 (patch) | |
tree | a58f4768c70e7ee986feafa7e14a7a12b1fc84e0 /module/plugins/hoster | |
parent | update mediafire, rusfolder (diff) | |
download | pyload-38ace48574d7ec1d5dec1f311e4ef73233943313.tar.xz |
putlockerCom
Diffstat (limited to 'module/plugins/hoster')
-rw-r--r-- | module/plugins/hoster/PutlockerCom.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hoster/PutlockerCom.py b/module/plugins/hoster/PutlockerCom.py index 4de0ca218..8cfcd4d9e 100644 --- a/module/plugins/hoster/PutlockerCom.py +++ b/module/plugins/hoster/PutlockerCom.py @@ -52,7 +52,7 @@ class PutlockerCom(Hoster): __name__ = "PutlockerCom" __type__ = "hoster" __pattern__ = r'http://(www\.)?putlocker\.com/(file|embed)/[A-Z0-9]+' - __version__ = "0.1" + __version__ = "0.2" __description__ = """Putlocker.Com""" __author_name__ = ("jeix") @@ -121,6 +121,6 @@ class PutlockerCom(Hoster): # if link is None: # self.fail("%s: Plugin broken." % self.__name__) - return self.link.group(1) + return self.link.group(1).replace("&", "&") |