We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b358869 commit bfc9bc7Copy full SHA for bfc9bc7
crawler.py
@@ -17,7 +17,7 @@
17
# Auth to GitHub.com
18
ghe = os.getenv("GH_ENTERPRISE_URL").strip()
19
if ghe:
20
- gh = github3.github.GitHubEnterprise(os.getenv("GH_ENTERPRISE_URL"), token=os.getenv("GH_TOKEN"))
+ gh = github3.github.GitHubEnterprise(ghe, token=os.getenv("GH_TOKEN"))
21
else:
22
gh = github3.login(token=os.getenv("GH_TOKEN"))
23
0 commit comments