From e5ecb9d283d41ebf3ad125a11c28d138c716b8fa Mon Sep 17 00:00:00 2001 From: viliambalaz Date: Thu, 25 Jun 2020 11:25:51 +0200 Subject: [PATCH] #280 Use raw_input instead getpass.getpass --- .github/workflows/main.yml | 4 ++-- setup.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bca375023..37516928b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,12 +39,12 @@ jobs: "" \ "" \ "obilgee@chcemvediet.sk"\ - "www-chcemvediet-sk" \ + "" \ + "" \ "y" \ "y" \ "y" \ "y" \ - "" \ "admin" \ "" \ "" \ diff --git a/setup.py b/setup.py index c62727e7e..f6773361a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,6 @@ import string import random import json -import getpass import textwrap import unicodedata @@ -103,7 +102,7 @@ def input_password(self, key, prompt, hasher=None, required=False): configured = self.data.get(key, u'') prompt = u'\n{} [{}]: '.format(prompt, u'*****' if configured else u'') while True: - inputed = getpass.getpass(PROMPT + prompt + RESET) + inputed = raw_input(PROMPT + prompt + RESET) if required and not inputed and not configured: print(ERROR + u'\nError: The value is required.' + RESET) continue