Skip to content

Commit

Permalink
Merge pull request #2971 from chaoss/fix-syntax-error
Browse files Browse the repository at this point in the history
change & to ?
  • Loading branch information
sgoggins authored Jan 15, 2025
2 parents 60f8920 + e99588d commit 6cd0ddb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion augur/tasks/github/messages.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def fast_retrieve_all_pr_and_issue_messages(repo_git: str, logger, key_auth, tas
url = f"https://api.github.com/repos/{owner}/{repo}/issues/comments"

if since:
url += f"&since={since.isoformat()}"
url += f"?since={since.isoformat()}"

# define logger for task
logger.info(f"Collecting github comments for {owner}/{repo}")
Expand Down

0 comments on commit 6cd0ddb

Please sign in to comment.