Properly register password from prompt

Whenever the password field is missing from the conf, gertty prompts the
user to enter it but hapilly discard it to a local variable.  Set the
config password field instead.

Change-Id: Idf6ea2edd9396e4e635955519af6739106fbfe3c
This commit is contained in:
Antoine Musso 2014-04-30 17:04:14 +02:00
parent 47de985ba7
commit 993bf7b204
1 changed files with 2 additions and 2 deletions

View File

@ -37,8 +37,8 @@ class Config(object):
self.url = self.config.get(server, 'url')
self.username = self.config.get(server, 'username')
if not self.config.has_option(server, 'password'):
password = getpass.getpass("Password for %s (%s): "
% (self.url, self.username))
self.password = getpass.getpass("Password for %s (%s): "
% (self.url, self.username))
else:
self.password = self.config.get(server, 'password')
if self.config.has_option(server, 'verify_ssl'):