Skip to content

Commit

Permalink
fix open_browser from conf file
Browse files Browse the repository at this point in the history
  • Loading branch information
deepskyblue86 committed Feb 22, 2024
1 parent b2e1b72 commit 9a19777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gimme_aws_creds/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def set_auth_session(self, auth_session):
def auth_session(self):
if 'auth_session' in self._cache:
return self._cache['auth_session']
if self.config.open_browser is True or self.conf_dict.get('open_browser') == "True":
if self.config.open_browser is True or self.conf_dict.get('open_browser') is True:
open_browser = True
else:
open_browser = False
Expand Down

0 comments on commit 9a19777

Please sign in to comment.