pastebin- python wrapper for the pastebin api |
git clone git://git.acid.vegas/pastebin.git |
Log | Files | Refs | Archive | README | LICENSE |
commit f4758c66e974e8b5d6dfcc86cb208f9c34623a8a
parent 31ee5d3a5273142e3467e71dd8a1485db1dc8ec3 Author: acidvegas <acid.vegas@acid.vegas> Date: Fri, 28 Jun 2019 05:54:07 -0400 Fixed typo Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git a/pastebin/example.py b/pastebin/example.py @@ -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])) |