diff options
Diffstat (limited to '')
-rw-r--r-- | Mailman/Utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 9ab35a1c..36fbd1f9 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -1587,7 +1587,8 @@ def captcha_display(mlist, lang, captchas): idx = random.randrange(len(captchas)) question = captchas[idx][0] box_html = mlist.FormatBox('captcha_answer', size=30) - # Remember to encode the language in the index so that we can get it out again! + # Remember to encode the language in the index so that we can get it out + # again! return (websafe(question), box_html, lang + "-" + str(idx)) def captcha_verify(idx, given_answer, captchas): |