Skip to content
Snippets Groups Projects
Commit d70cdd05 authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Scripts - update_license_headers.py:

- Corrected regular experssions
- Not finished
parent d68f6218
No related branches found
No related tags found
2 merge requests!235Release TeraFlowSDN 3.0,!224Resolve "Update license headers for Release 3"
......@@ -32,7 +32,7 @@ RE_OLD_COPYRIGHTS = [
r'Copyright\ 2022\-2023\ ETSI\ TeraFlowSDN\ \-\ TFS\ OSG\ \(https\:\/\/tfs\.etsi\.org\/\)',
]
RE_OLD_COPYRIGHTS = [
(re.compile(re_old_copyright), re.compile(r'.*{}.*'.format(re_old_copyright)))
(re.compile(r'.*{}.*'.format(re_old_copyright)), re.compile(re_old_copyright))
for re_old_copyright in RE_OLD_COPYRIGHTS
]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment