diff options
Diffstat (limited to 'captcha/captcha.py')
-rw-r--r-- | captcha/captcha.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/captcha/captcha.py b/captcha/captcha.py index 22c097f38..8f0b828d8 100644 --- a/captcha/captcha.py +++ b/captcha/captcha.py @@ -236,11 +236,9 @@ class OCR(object): for key, item in values.iteritems(): if key.__class__ == str: - print key, "->", item result = result.replace(key, item) else: for expr in key: - print expr, "->", item result = result.replace(expr, item) if var: |