Skip to content

Commit dddf2c2

Browse files
brcollisvekars
andauthored
Update .jenkins/update_timestamps.py
Co-authored-by: Svetlana Karslioglu <[email protected]>
1 parent 54e17f1 commit dddf2c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.jenkins/update_timestamps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def get_last_commit_timestamp_for_file(file_path: str) -> str:
1212
Returns:
1313
str: Last committed timestamp string
1414
"""
15-
git_command = ["git", "log", "-1", "--format=%at", "--", file_path]
15+
git_command = ["git", "log", "-1", '--date=format:%B %d, %Y', "--format=%at", "--", file_path]
1616
timestamp = subprocess.check_output(git_command).decode().strip()
1717

1818
if not timestamp:

0 commit comments

Comments
 (0)