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 38ff11a commit 0ae1f6dCopy full SHA for 0ae1f6d
git_repo/services/ext/github.py
@@ -83,7 +83,7 @@ def get_repository(self, user, repo):
83
def request_list(self, user, repo):
84
repository = self.gh.repository(user, repo)
85
for pull in repository.iter_pulls():
86
- yield ( pull.number, pull.title, pull.links['issue'] )
+ yield ( str(pull.number), pull.title, pull.links['issue'] )
87
88
def request_fetch(self, user, repo, request, pull=False):
89
if pull:
0 commit comments