From 494d9ec8550f8ac07e7217bd698d1aecbf5291c6 Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Thu, 31 Jan 2019 14:32:19 +0100 Subject: [PATCH] improvements --- do-copyright.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/do-copyright.py b/do-copyright.py index 5f26c9e02..bca317695 100755 --- a/do-copyright.py +++ b/do-copyright.py @@ -79,8 +79,8 @@ def checkNote(filename): skip = False for iBlock in range(len(startNote)): - if iLine>=startNote[iBlock] and iLine<endNote[iBlock]: - print " " + lines[iLine] + " [remove " + str(iBlock) + "]" + if iLine>=startNote[iBlock] and iLine<=endNote[iBlock]: + print " " + strip(lines[iLine]) + " [remove " + str(iBlock) + "]" skip = True if not skip: -- GitLab