mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 22:02:50 +00:00
Add newline when printing the password
This commit is contained in:
@@ -68,7 +68,7 @@ def main():
|
|||||||
sys.stderr.write('Passwords do not match\n')
|
sys.stderr.write('Passwords do not match\n')
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
else:
|
else:
|
||||||
sys.stdout.write(keyring.get_password('ansible', username))
|
sys.stdout.write('%s\n' % keyring.get_password('ansible', username))
|
||||||
|
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user