feat: add message for non-all-since runs

The commit adds a message to the output when the `--all-since` option is not used, which prints the percentage of code written by Aider in the current release.
This commit is contained in:
Paul Gauthier (aider) 2024-07-31 10:51:09 -03:00
parent 3a70ea9faf
commit 0255030988

View file

@ -163,6 +163,9 @@ def main():
f.write(yaml_output)
else:
print(yaml_output)
if not args.all_since:
print(f"- Aider wrote {round(aider_percentage)}% of the code in this release.")
def get_counts_for_file(start_tag, end_tag, authors, fname):