From ca9b4e3c49cc08dcd0dc9d23cf2fa7183f587ab8 Mon Sep 17 00:00:00 2001
From: ralfulrich <ralf.ulrich@kit.edu>
Date: Thu, 31 Jan 2019 14:41:20 +0100
Subject: [PATCH] improvements

---
 do-copyright.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/do-copyright.py b/do-copyright.py
index 882b6fb72..1155ab7a1 100755
--- a/do-copyright.py
+++ b/do-copyright.py
@@ -73,14 +73,17 @@ def checkNote(filename):
 
         file.write(text)
 
+        skip = False
         for iLine in range(len(lines)):
 
-            skip = False
             for iBlock in range(len(startNote)):
                 if iLine>=startNote[iBlock] and iLine<=endNote[iBlock]:
                     print "   [remove " + str(iBlock) + "] " + (lines[iLine]).strip()
                     skip = True
 
+            if lines[iLine].strip() != "": # if line after comment is empty, also remove it
+                skip = False
+                    
             if not skip:
                 file.write(lines[iLine])
         
-- 
GitLab