Skip to content

Commit

Permalink
[Windows] allow the gui to start w/o an API key. Otherwise, there's no (
Browse files Browse the repository at this point in the history
#3590)

documented way to add the api key
  • Loading branch information
derekwbrown authored and gmmeyer committed Nov 21, 2017
1 parent c7a2917 commit 82a7a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win32/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def __init__(self, config_path):

@property
def api_key(self):
config = get_config(parse_args=False, cfg_path=self.file_path)
config = get_config(parse_args=False, cfg_path=self.file_path, allow_invalid_api_key=True)
api_key = config.get('api_key', None)
if not api_key or api_key == 'APIKEYHERE':
return None
Expand Down

0 comments on commit 82a7a41

Please sign in to comment.