Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include tox.ini
include runtests.py
include rest_captcha/captcha_py2.png
include rest_captcha/captcha_py3.png
recursive-include rest_captch/fonts *
include rest_captcha/fonts *
global-exclude *pyc
global-exclude coverage.xml
global-exclude .DS_Store
Expand Down
2 changes: 1 addition & 1 deletion rest_captcha/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def get_cache_key(captcha_key):


def random_char_challenge(length):
chars = 'abcdefghijklmnopqrstuvwxyz'
chars = 'abcdefghijklmnopqrstuvwxyz1234567890'
ret = ''
for i in range(length):
ret += random.choice(chars)
Expand Down