Skip to content

Drop timestamp in generated source code #146822

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions openmp/runtime/tools/message-converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#

import argparse
import datetime
import os
import platform
import re
Expand Down Expand Up @@ -188,11 +187,10 @@ def insert_header(f, data, commentChar="//"):
f.write(
"{0} Do not edit this file! {0}\n"
"{0} The file was generated from"
" {1} by {2} on {3}. {0}\n\n".format(
" {1} by {2}. {0}\n\n".format(
commentChar,
os.path.basename(data.filename),
os.path.basename(__file__),
datetime.datetime.now().ctime(),
)
)

Expand Down
Loading