1
0
Fork 0

fix(readme-generator/regen_readme_in_batch): f-string missing a f

This commit is contained in:
Laurent Peuch 2024-03-29 06:53:08 +01:00
parent df18ddc242
commit 1d077fc3a2

View file

@ -56,7 +56,7 @@ async def regen_readme(repository, branch):
await git(["commit", "-a", "-m", "Auto-update README", "--author='yunohost-bot <yunohost@yunohost.org>'"], in_folder=folder)
await git(["push", "origin", branch, "--quiet"], in_folder=folder)
print("Updated {repo}")
print(f"Updated {repository}")
if __name__ == '__main__':