Browse Source

fix stacktrace

Zach White 4 years ago
parent
commit
295cb5c60a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/qmk/cli/ping/maintainers.py

+ 1 - 1
lib/python/qmk/cli/ping/maintainers.py

@@ -29,7 +29,7 @@ def ping_maintainers(cli):
         from ghapi.all import GhApi
         from ghapi.all import GhApi
 
 
         ghapi = GhApi(owner=cli.args.owner, repo=cli.args.repo)
         ghapi = GhApi(owner=cli.args.owner, repo=cli.args.repo)
-        pr = ghapi.pulls(cli.args.pr)
+        pr = ghapi.pulls.get(cli.args.pr)
 
 
         if not pr.draft:
         if not pr.draft:
             for team in pr.requested_teams:
             for team in pr.requested_teams: