We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e6f226 commit e148dfdCopy full SHA for e148dfd
1 file changed
pre_commit_hooks/check_autopkg_recipes.py
@@ -502,7 +502,11 @@ def main(argv=None):
502
503
# Ensure the recipe identifier isn't duplicated.
504
if recipe["Identifier"] in seen_identifiers:
505
- print('{}: Identifier "{}" is shared by another recipe in this repo.')
+ print(
506
+ '{}: Identifier "{}" is shared by another recipe in this repo.'.format(
507
+ filename, recipe["Identifier"]
508
+ )
509
510
retval = 1
511
else:
512
seen_identifiers.append(recipe["Identifier"])
0 commit comments