diff --git a/do-copyright.py b/do-copyright.py index dcbd9d0593f260e69bd1effc84560a8e1307dbfa..2953476d9cca4f4b34e9ba3e8e3e46a481639923 100755 --- a/do-copyright.py +++ b/do-copyright.py @@ -42,13 +42,23 @@ def checkNote(filename): endNote = iLine iLine += 1 - #if startNote>=0 and endNote>=0 and isCopyright: - #print filename - #for iLine in range(startNote, endNote+1): - # print lines[iLine] - - os.rename(filename, filename+".bak") + # now check if copyright notice is already there and identical... + isSame = True + if startNote>=0 and endNote>=0 and isCopyright: + noteLines = text.split('\n') + for iLine in range(len(noteLines)): + if noteLines[iLine] != lines[startNote+iLine]: + isSame = False + print "not same: " + noteLines[iLine] + " " + lines[startNote+iLine] + + # check if notice is the same + if isSame: + return + # add (new) copyright notice here: + + os.rename(filename, filename+".bak") + with open(filename, "w") as file: file.write(text)