Open k3boxers opened 2 years ago
I verified the issue is with the ._github_url
. If I change that to point to my enterprise server col._github_url = 'https://api.github.[MYHOST]
it works. I would do a pull request, but I don't know what the best way to fix it is, since I don't think it is a direct replacement with col._api
.
When trying to create a card in a Github Enterprise repository the url that is built isn't for the Enterprise server, but for
api.github.com
.Creating a project and columns worked fine, trying to read columns however had the same issue.
Since it is going to the github, where my project doesn't exist and I'm not authenticated I get the following error:
I believe it is because it is referencing
self._github_url
rather thanself._api
inprojects.py
, but I was unable to fix in the python debugger.