https://github.com/dalboris/vpaint
Revision acd9a6a2934d9dd995dcffdf0094e0f83b993a84 authored by Boris Dalstein on 12 December 2019, 16:32:02 UTC, committed by Boris Dalstein on 12 December 2019, 16:32:02 UTC
1 parent ab5cc57
Raw File
Tip revision: acd9a6a2934d9dd995dcffdf0094e0f83b993a84 authored by Boris Dalstein on 12 December 2019, 16:32:02 UTC
SVG Import: Start import dialog, just a warning message for now (#9)
Tip revision: acd9a6a
update_copyright.py
#!/usr/bin/env python3
#

from pathlib import Path

before = "Copyright (C) 2012-2019 The VPaint Developers"

after = "Copyright (C) 2012-2019 The VPaint Developers"

if __name__ == "__main__":

    path = Path(".")
    for file in path.glob("src/**/*"):
        if file.suffix in [".h", ".cpp", ".pro"]:
            s1 = file.read_text()
            s2 = s1.replace(before, after)
            if s1 != s2:
                file.write_text(s2)
                print(file)
back to top