We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de28c34 commit c29105eCopy full SHA for c29105e
contrib/devtools/copyright_header.py
@@ -371,7 +371,7 @@ def create_updated_copyright_line(line, last_git_change_year):
371
space_split = after_copyright.split(' ')
372
year_range = space_split[0]
373
start_year, end_year = parse_year_range(year_range)
374
- if end_year == last_git_change_year:
+ if end_year >= last_git_change_year:
375
return line
376
return (before_copyright + copyright_splitter +
377
year_range_to_str(start_year, last_git_change_year) + ' ' +
0 commit comments