update-python-libraries: add generator hint

This commit is contained in:
Martin Weinelt
2025-04-03 23:13:20 +02:00
parent 84c1d08747
commit e05360c0c3
@@ -557,6 +557,8 @@ def _commit(path, pname, old_version, new_version, pkgs_prefix="python: ", **kwa
if changelog := _get_attr_value(f"{pkgs_prefix}{pname}.meta.changelog"):
msg += f"\n\n{changelog}"
msg += "\n\nThis commit was automatically generated using update-python-libraries."
try:
subprocess.check_call([GIT, "add", path])
subprocess.check_call([GIT, "commit", "-m", msg])