Merge pull request #21 from sundowndev/patch-msg

Patch need help message
This commit is contained in:
Raphael 2019-01-17 09:19:57 +00:00 committed by GitHub
commit 27b39208b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env python3
__version__ = 'v1.1.2-rc1'
__version__ = 'v1.0.0-rc2'
try:
import sys
@ -203,7 +203,7 @@ def search(req, stop):
while r.status_code == 503:
print(code_warning + 'You are temporary blacklisted from Google search. Complete the captcha at the following URL and copy/paste the content of GOOGLE_ABUSE_EXEMPTION cookie : {}'.format(URL))
print('\n' + code_info +
'Need help ? Read https://github.com/sundowndev/PhoneInfoga#dealing-with-google-captcha')
'Need help ? Read https://github.com/sundowndev/PhoneInfoga/wiki')
token = input('\nGOOGLE_ABUSE_EXEMPTION=')
googleAbuseToken = '&google_abuse=' + token
r = s.get(URL + googleAbuseToken, headers=headers)