Skip to content

Commit 29580e0

Browse files
authored
Fix getting repo using PyGithub
1 parent 51fe0e6 commit 29580e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adabot/lib/circuitpython_library_validators.py

Lines changed: 1 addition & 1 deletion
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)