From ae4242a430e629ab9a24ce5adc4a737062adde6c Mon Sep 17 00:00:00 2001 From: pentarctagon Date: Tue, 24 Oct 2023 23:11:09 -0500 Subject: [PATCH] update path --- utils/update_copyright.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/update_copyright.py b/utils/update_copyright.py index 582f5df0e73..40091fe5a06 100755 --- a/utils/update_copyright.py +++ b/utils/update_copyright.py @@ -28,7 +28,7 @@ current_notice = "^\tCopyright \(C\) 20[0-9]{2} - "+new_year+"$" extensions = re.compile("\..pp$|\.mm$|^wesnoth_lua_config\.h$") old_copyright = re.compile(previous_notice) new_copyright = re.compile(current_notice) -ignored_dirs = ["src/lua", "src/modules/mariadbpp", "src/spirit_po", "src/xBRZ"] +ignored_dirs = ["src/modules/lua", "src/modules/mariadbpp", "src/spirit_po", "src/xBRZ"] print("Updating copyright from year '"+previous_year+"' to year '"+new_year+"'") for root, dirs, files in os.walk('src'):