summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefano <l.stickell@yahoo.it> 2014-04-18 17:13:33 +0200
committerGravatar Stefano <l.stickell@yahoo.it> 2014-04-18 17:13:33 +0200
commit18cb8c1bc9798a0803cfe815798d1784785e5ced (patch)
treecd98fd67e992d1de1f26a3f10e4f4a4b9994c912
parentFixed PEP8 violations (diff)
downloadpyload-18cb8c1bc9798a0803cfe815798d1784785e5ced.tar.xz
CaptchaService: fixed missing import
-rw-r--r--module/plugins/internal/CaptchaService.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/plugins/internal/CaptchaService.py b/module/plugins/internal/CaptchaService.py
index 512032471..400484d26 100644
--- a/module/plugins/internal/CaptchaService.py
+++ b/module/plugins/internal/CaptchaService.py
@@ -18,10 +18,11 @@
"""
import re
+from random import random
class CaptchaService():
- __version__ = "0.03"
+ __version__ = "0.04"
def __init__(self, plugin):
self.plugin = plugin