Skip to content

Commit

Permalink
Fix flake error?
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKrughoff committed Jun 27, 2019
1 parent 42ce4c0 commit 2337abb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/lsst/verify/bin/dispatchverify.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,8 +404,8 @@ def __init__(self, args):
if args.interactive:
self.api_password = getpass.getpass(prompt="SQuaSH password: ")
else:
self.api_password = (args.api_password
or os.getenv('SQUASH_password'))
self.api_password = (args.api_password or
os.getenv('SQUASH_password'))
if not self.test and self.api_password is None:
message = ('--password or $SQUASH_password configuration '
'required')
Expand Down

0 comments on commit 2337abb

Please sign in to comment.