Fixed typo

This commit is contained in:
Dionysus 2019-06-28 05:54:07 -04:00
parent 31ee5d3a52
commit f4758c66e9
No known key found for this signature in database
GPG Key ID: 05114B46832BDBDB
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ else:
password = getpass.getpass('[?] - Password: ')
api_user_key = api.create_user_key(username, password)
if 'Bad API request' not in api_user_key:
print('[+] - You API user key is: ' + ap_user_key)
print('[+] - You API user key is: ' + api_user_key)
api = pastebin.PasteBin(api_dev_key, api_user_key)
else:
raise SystemExit('[!] - Failed to create API user key! ({0})'.format(api_user_key.split(', ')[1]))