aculver

Results 1 issues of aculver

``` from atlassian import Insight import config with open(config.api_token_file, 'r') as token_file: api_user, api_pass = token_file.read().strip().split(':') insight = Insight( url=config.site_url, username=api_user, password=api_pass, cloud=True) print(insight.default_headers) ``` Outputs: `{'Accept': 'application/json'}` Should be:...