Skip to content

Commit

Permalink
Merge pull request #299 from tekktrik/dev/fix-getting-repo
Browse files Browse the repository at this point in the history
Fix getting repo using PyGithub
  • Loading branch information
kattni authored Sep 14, 2022
2 parents de8f88a + 29580e0 commit 84b22d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adabot/lib/circuitpython_library_validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -866,7 +866,7 @@ def validate_readthedocs(self, repo):
# Get the README file contents
while True:
try:
lib_repo = GH_INTERFACE.get_repo("Adafruit/" + repo["full_name"])
lib_repo = GH_INTERFACE.get_repo(repo["full_name"])
content_file = lib_repo.get_contents("README.rst")
break
except pygithub.RateLimitExceededException:
Expand Down

0 comments on commit 84b22d2

Please sign in to comment.