Skip to content

Commit

Permalink
tools: only print date
Browse files Browse the repository at this point in the history
  • Loading branch information
Meulengracht committed Sep 4, 2024
1 parent cdf701d commit 9566897
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate-changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 != '':
Expand Down

0 comments on commit 9566897

Please sign in to comment.