File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ async def dmp_updates():
9797 dmp_id = dmp ['id' ]
9898 issue_number = dmp ['issue_number' ]
9999 repo = dmp ['repo' ]
100- owner = dmp ['dmp_orgs' ]['name ' ]
100+ owner = dmp ['dmp_orgs' ]['repo_owner ' ]
101101
102102 app .logger .info ("DMP_ID: " + str (dmp_id ))
103103
@@ -110,9 +110,10 @@ async def dmp_updates():
110110
111111 # 1. Read & Update Description of the ticket
112112 GITHUB_ISSUE_URL = "https://api.github.com/repos/{owner}/{repo}/issues/{issue_number}"
113+ print (dmp_id )
113114 description_url = GITHUB_ISSUE_URL .format (
114115 owner = owner , repo = repo , issue_number = issue_number )
115-
116+ print ( description_url )
116117 async with httpx .AsyncClient () as client :
117118 issue_response = await client .get (description_url , headers = headers )
118119 if issue_response .status_code == 200 :
You can’t perform that action at this time.
0 commit comments