https://github.com/dalboris/vpaint
Revision 1ec654ca60791ac7577f2425db824427d1226d16 authored by Boris Dalstein on 05 June 2020, 18:02:55 UTC, committed by Boris Dalstein on 05 June 2020, 18:02:55 UTC
1 parent c0f766a
Raw File
Tip revision: 1ec654ca60791ac7577f2425db824427d1226d16 authored by Boris Dalstein on 05 June 2020, 18:02:55 UTC
Fix typo in PNG export settings
Tip revision: 1ec654c
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