aboutsummaryrefslogtreecommitdiff
path: root/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'config.py')
-rw-r--r--config.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/config.py b/config.py
index 2d47141..5a56801 100644
--- a/config.py
+++ b/config.py
@@ -29,9 +29,8 @@ CLIENTID = 'client.secret'
TOKEN = 'token.secret'
def get_secrets_from_input():
- print("account secret not found, please manually input: ")
- UNAME = input("username or email: ")
- PW = input("password (not concealed): ")
+ UNAME = input("[input] username or email: ")
+ PW = input("[input] password (not concealed): ")
return (UNAME, PW)