Skip to content

Commit

Permalink
Merge pull request #2259 from chaoss/dev-update-changed-function-call
Browse files Browse the repository at this point in the history
Fix inconsistent changes to function call
  • Loading branch information
sgoggins committed Mar 21, 2023
2 parents f6a756f + 794adbb commit 0a62ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion augur/tasks/github/releases/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ def fetch_data(key_auth, logger, github_url, repo_id, tag_only = False):

# Hit the graphql endpoint
logger.info("Hitting endpoint: {} ...\n".format(url))
data = request_graphql_dict(key_auth, url, query)
data = request_graphql_dict(key_auth,logger, url, query)

if 'data' in data:
data = data['data']['repository']
Expand Down

0 comments on commit 0a62ec0

Please sign in to comment.