Skip to content

Commit

Permalink
Fix getting repo using PyGithub
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik authored Sep 6, 2022
1 parent 51fe0e6 commit 29580e0
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 29580e0

Please sign in to comment.