From a02d26fb1afad8b93a631793fe9b3ea665b3ea77 Mon Sep 17 00:00:00 2001 From: Lubomír Sedlář Date: May 12 2016 13:38:09 +0000 Subject: There is no raw_input As of PEP3111, raw_input() was renamed to input() in Python 3. Signed-off-by: Lubomír Sedlář --- diff --git a/pag/utils.py b/pag/utils.py index 7f21d1c..7b379ac 100644 --- a/pag/utils.py +++ b/pag/utils.py @@ -86,7 +86,7 @@ def repo_url(name, ssh=False, git=False, domain='pagure.io'): def create_config(): - username = raw_input("FAS username: ") + username = input("FAS username: ") conf = dict( username=username, )