Skip to content

Commit 84b22d2

Browse files
authored
Merge pull request #299 from tekktrik/dev/fix-getting-repo
Fix getting repo using PyGithub
2 parents de8f88a + 29580e0 commit 84b22d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/lib/circuitpython_library_validators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -866,7 +866,7 @@ def validate_readthedocs(self, repo):
866866
# Get the README file contents
867867
while True:
868868
try:
869-
lib_repo = GH_INTERFACE.get_repo("Adafruit/" + repo["full_name"])
869+
lib_repo = GH_INTERFACE.get_repo(repo["full_name"])
870870
content_file = lib_repo.get_contents("README.rst")
871871
break
872872
except pygithub.RateLimitExceededException:

0 commit comments

Comments
 (0)