Skip to content
Snippets Groups Projects
Commit 28626967 authored by kosted's avatar kosted
Browse files

remove credentials in clear

parent 535306c2
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,7 @@ import math
import os.path as path
# Import getopt module
import getopt
import getpass
MAAP_ENV_TYPE = os.getenv("MAAP_ENV_TYPE")
......@@ -74,7 +75,8 @@ def init():
def refresh():
email = input("Your email: ")
#password
password = input("Your password: ")
#password = input("Your password: ")
password = getpass.getpass('Your password:')
#Function to generate a new token
generate_token(email, password)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment