From b527dd331589ef32f1daacece07c656140719038 Mon Sep 17 00:00:00 2001 From: cclauss Date: Mon, 29 Oct 2018 14:24:32 +0100 Subject: [PATCH] Update active-contrib.py --- tools/active-contrib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/active-contrib.py b/tools/active-contrib.py index 30bbcf61c..c6cf53499 100644 --- a/tools/active-contrib.py +++ b/tools/active-contrib.py @@ -36,12 +36,12 @@ import getpass import pprint -from six.moves import raw_input +from six.moves import input def prompt_creds(): print("I need to query FAS to get the list of packagers..") - username = raw_input("FAS username: ") + username = input("FAS username: ") password = getpass.getpass("FAS password: ") return dict(username=username, password=password)