Skip to content

Commit

Permalink
Fixed prompt string of EnterCaptchaMixin
Browse files Browse the repository at this point in the history
  • Loading branch information
voronind committed Apr 29, 2014
1 parent 1b9d197 commit c4943b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vk/mixins.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def captcha_is_needed(self, error_data, method_name, **method_kwargs):
captcha_img = error_data.get('captcha_img')

print('Captcha URL: {}'.format(captcha_img))
captcha_key = input('Enter captcha text:')
captcha_key = input('Enter captcha text: ')

method_kwargs['captcha_sid'] = captcha_sid
method_kwargs['captcha_key'] = captcha_key
Expand Down

0 comments on commit c4943b0

Please sign in to comment.