@@ -258,15 +258,17 @@ def get_directory_indices_entries(
258258 dirpath = result .filename .parent
259259 dirpaths .add (dirpath )
260260 refs [dirpath ].add (result .ref )
261- entries .append ((dirpath , None , None , f"fork: { unquote (result .fork )} " ))
261+ entries .append (
262+ (dirpath , None , None , f"fork: { unquote (result .fork )} /{ unquote (result .ref )} " )
263+ )
262264 entries .append ((dirpath , None , None , f"version: { result .version } " ))
263265 config = "," .join (mflags .flags_to_human (result .flags ))
264266 entries .append ((dirpath , None , None , f"config: { config } " ))
265267 link = table .link_to_hash (result .cpython_hash , result .fork )
266268 entries .append ((dirpath , None , None , f"commit hash: { link } " ))
267269 entries .append ((dirpath , None , None , f"commit date: { result .commit_datetime } " ))
268270 if result .commit_merge_base is not None :
269- link = table .link_to_hash (result .commit_merge_base , result . fork )
271+ link = table .link_to_hash (result .commit_merge_base , "python" )
270272 entries .append ((dirpath , None , None , f"commit merge base: { link } " ))
271273 if result .github_action_url is not None :
272274 link = table .md_link ("GitHub Action run" , result .github_action_url )
0 commit comments