@@ -258,15 +258,17 @@ def get_directory_indices_entries(
258
258
dirpath = result .filename .parent
259
259
dirpaths .add (dirpath )
260
260
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
+ )
262
264
entries .append ((dirpath , None , None , f"version: { result .version } " ))
263
265
config = "," .join (mflags .flags_to_human (result .flags ))
264
266
entries .append ((dirpath , None , None , f"config: { config } " ))
265
267
link = table .link_to_hash (result .cpython_hash , result .fork )
266
268
entries .append ((dirpath , None , None , f"commit hash: { link } " ))
267
269
entries .append ((dirpath , None , None , f"commit date: { result .commit_datetime } " ))
268
270
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" )
270
272
entries .append ((dirpath , None , None , f"commit merge base: { link } " ))
271
273
if result .github_action_url is not None :
272
274
link = table .md_link ("GitHub Action run" , result .github_action_url )
0 commit comments