aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-12-07 18:06:23 +0200
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2020-01-03 17:48:37 +0200
commit1998152f15fd2b0e83f5068c375a34feaf73db8c (patch)
treef8c87db2445696a5b86b092186984947b056164d /contrib/devtools
parent071f2fc204f542c5a287ca8835115a2ee0bf2f50 (diff)
downloadbitcoin-1998152f15fd2b0e83f5068c375a34feaf73db8c.tar.xz
script: Add empty line after C++ copyright
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-xcontrib/devtools/copyright_header.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/devtools/copyright_header.py b/contrib/devtools/copyright_header.py
index 7f6e3548f9..433eef06f3 100755
--- a/contrib/devtools/copyright_header.py
+++ b/contrib/devtools/copyright_header.py
@@ -502,6 +502,7 @@ def insert_script_header(filename, file_lines, start_year, end_year):
write_file_lines(filename, file_lines)
def insert_cpp_header(filename, file_lines, start_year, end_year):
+ file_lines.insert(0, '\n')
header_lines = get_cpp_header_lines_to_insert(start_year, end_year)
for line in header_lines:
file_lines.insert(0, line)