Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions dev/archery/archery/crossbow/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,8 @@ def _github_login(self, github_token=None):
if not _have_github:
raise ImportError('Must install PyGithub')
github_token = github_token or self.github_token
if github_token is None:
return Github(timeout=30)
Comment thread
thisisnic marked this conversation as resolved.
Outdated
return Github(auth=GithubAuth.Token(github_token), timeout=30)
Comment on lines 454 to 457
Comment thread
thisisnic marked this conversation as resolved.

def as_github_repo(self, github_token=None):
Expand Down