diff options
| author | 2015-02-08 02:09:45 +0100 | |
|---|---|---|
| committer | 2015-02-08 02:15:53 +0100 | |
| commit | b25bc61dd47d8d3c42969bd0f72443b21c4b059e (patch) | |
| tree | 6115841c9763289bd400c6171508f397d3526bf5 /module/plugins/hooks/SimplydebridCom.py | |
| parent | [ZippyshareCom] Typo (diff) | |
| download | pyload-b25bc61dd47d8d3c42969bd0f72443b21c4b059e.tar.xz | |
Spare code cosmetics
Diffstat (limited to 'module/plugins/hooks/SimplydebridCom.py')
| -rw-r--r-- | module/plugins/hooks/SimplydebridCom.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/module/plugins/hooks/SimplydebridCom.py b/module/plugins/hooks/SimplydebridCom.py index 10c613fb5..4d27f5ae4 100644 --- a/module/plugins/hooks/SimplydebridCom.py +++ b/module/plugins/hooks/SimplydebridCom.py @@ -22,5 +22,5 @@ class SimplydebridCom(MultiHook):      def getHosters(self): -        page = self.getURL("http://simply-debrid.com/api.php", get={'list': 1}) -        return [x.strip() for x in page.rstrip(';').replace("\"", "").split(";")] +        html = self.getURL("http://simply-debrid.com/api.php", get={'list': 1}) +        return [x.strip() for x in html.rstrip(';').replace("\"", "").split(";")]  | 
