From 9566897c679e87910e48d558418364f4d42aa91f Mon Sep 17 00:00:00 2001 From: Philip Meulengracht Date: Wed, 4 Sep 2024 12:14:43 +0200 Subject: [PATCH] tools: only print date --- tools/generate-changelog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/generate-changelog.py b/tools/generate-changelog.py index cf3ecc56..c95b9886 100755 --- a/tools/generate-changelog.py +++ b/tools/generate-changelog.py @@ -198,7 +198,7 @@ def main(): # add a header that helps us audit where the current build is # sourced from. now = datetime.now() - changes = f"{now.strftime("%d/%m/%Y %H:%M:%S")}, commit {read_remote_git_url()}/tree/{read_commit_hash()}\n\n" + changes = f"{now.strftime("%d/%m/%Y")}, commit {read_remote_git_url()}/tree/{read_commit_hash()}\n\n" changes += '[ Changes in primed packages ]\n\n' pkg_changes = compare_manifests(old_manifest, new_manifest, docs_dir) if pkg_changes != '':