Skip to content

Commit

Permalink
Improve status output by adding group name
Browse files Browse the repository at this point in the history
  • Loading branch information
kvid committed Jul 24, 2020
1 parent 58a54b2 commit f2a0db0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wireviz/build_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def collect_filenames(description, groupkey, ext_list):
patterns = [f"{groups[groupkey]['prefix']}*{ext}" for ext in ext_list]
if ext_list != input_extensions and readme in groups[groupkey]:
patterns.append(readme)
print(f"{description} {path}")
print(f"{description} {groupkey} in {path}")
return sorted([filename for pattern in patterns for filename in path.glob(pattern)])


Expand Down

0 comments on commit f2a0db0

Please sign in to comment.