diff options
author | Stefano <l.stickell@yahoo.it> | 2013-07-20 18:14:08 +0200 |
---|---|---|
committer | Stefano <l.stickell@yahoo.it> | 2013-07-20 18:14:08 +0200 |
commit | abac8315248b6a72b0b4906548d9372f459cdd2e (patch) | |
tree | 794a4aa946147e23ac43fde5db1098ff3e3db84c /module/plugins/hooks | |
parent | Cleanup (diff) | |
download | pyload-abac8315248b6a72b0b4906548d9372f459cdd2e.tar.xz |
Code optimized
Diffstat (limited to 'module/plugins/hooks')
-rw-r--r-- | module/plugins/hooks/SimplydebridCOM.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/module/plugins/hooks/SimplydebridCOM.py b/module/plugins/hooks/SimplydebridCOM.py index 79083f724..721dce6ca 100644 --- a/module/plugins/hooks/SimplydebridCOM.py +++ b/module/plugins/hooks/SimplydebridCOM.py @@ -7,13 +7,13 @@ class SimplydebridCOM(MultiHoster): __name__ = "SimplydebridCOM" __version__ = "0.01" __type__ = "hook" - __config__ = [("activated", "bool", "Activated", "False"),("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"),("hosterList", "str", "Hoster list (comma separated)", "")] + __config__ = [("activated", "bool", "Activated", "False"), + ("hosterListMode", "all;listed;unlisted", "Use for hosters (if supported)", "all"), + ("hosterList", "str", "Hoster list (comma separated)", "")] __description__ = """Simply-Debrid.com hook plugin""" __author_name__ = ("Kagenoshin") __author_mail__ = ("kagenoshin@gmx.ch") def getHoster(self): page = getURL("http://simply-debrid.com/api.php?list=1") - if(page[len(page)-1] == ";"): #remove ; if the page entry ends with ; - page = page[0:len(page)-1] - return [x.strip() for x in page.replace("\"","").split(";")]
\ No newline at end of file + return [x.strip() for x in page.rstrip(';').replace("\"","").split(";")] |