summaryrefslogtreecommitdiffstats
path: root/module/plugins/crypter
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-07-26 02:36:15 +0200
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-08-01 17:01:44 +0200
commita1495eb2f9502fdf29974458845f928025bedf53 (patch)
treeedaf85ed7f15823bfdc271e95d537c5671ea1f86 /module/plugins/crypter
parent[UpdateManager] Disable reloadplugins schedule on plugin deactivation (diff)
downloadpyload-a1495eb2f9502fdf29974458845f928025bedf53.tar.xz
Prefer single quote for dict key
Diffstat (limited to 'module/plugins/crypter')
-rw-r--r--module/plugins/crypter/DuckCryptInfo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/module/plugins/crypter/DuckCryptInfo.py b/module/plugins/crypter/DuckCryptInfo.py
index 7e13a62f0..456c13606 100644
--- a/module/plugins/crypter/DuckCryptInfo.py
+++ b/module/plugins/crypter/DuckCryptInfo.py
@@ -52,6 +52,6 @@ class DuckCryptInfo(Crypter):
def handleLink(self, url):
src = self.load(url)
soup = BeautifulSoup(src)
- self.urls = [soup.find("iframe")["src"]]
+ self.urls = [soup.find("iframe")['src']]
if not self.urls:
self.logDebug('no links m - (Plugin out of date?)')