Skip to content
Open
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