\login_password with missing login_user not caught #363

pull/4420/head
Solomon Gifford 2015-03-31 16:43:40 -04:00 committed by Matt Clay
parent 8a8ef770c7
commit 401828e588
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ def main():
if mongocnf_creds is not False:
login_user = mongocnf_creds['user']
login_password = mongocnf_creds['password']
elif login_password is None and login_user is not None:
elif login_password is None or login_user is None:
module.fail_json(msg='when supplying login arguments, both login_user and login_password must be provided')
if login_user is not None and login_password is not None: