From 5e0f583dd6b96b01a47578bbf874f20da68c73f1 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 2 Jan 2020 13:08:05 -0500 Subject: [PATCH] Update copyright fixin' script --- contrib/devtools/fix-copyright-headers.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contrib/devtools/fix-copyright-headers.py b/contrib/devtools/fix-copyright-headers.py index fc57ae64e..d5a540103 100755 --- a/contrib/devtools/fix-copyright-headers.py +++ b/contrib/devtools/fix-copyright-headers.py @@ -1,4 +1,7 @@ #!/usr/bin/env python +# Copyright (c) 2019-2020 The Hush developers +# Released under the GPLv3 + from __future__ import print_function ''' @@ -24,7 +27,7 @@ import time year = time.gmtime()[0] last_year = year - 1 -command = "perl -pi -e 's/%s The Bitcoin/%s The Bitcoin/' %s" +command = "perl -pi -e 's/%s The Hush/%s The Hush/' %s" listFilesCommand = "find . | grep %s" extensions = [".cpp",".h"]