Skip to content

Commit

Permalink
Merge pull request #451 from deepskyblue86/fix-open_browser
Browse files Browse the repository at this point in the history
fix open_browser from conf file
  • Loading branch information
epierce authored Apr 7, 2024
2 parents b2e1b72 + 9a19777 commit c17154d
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 c17154d

Please sign in to comment.