bin/find-headers-to-move-inside-modules.py |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 21fc89c651a8adece2571bf2e9b25a3bf0cd4f61
Author:     LeSasse <l.sa...@fz-juelich.de>
AuthorDate: Wed Mar 27 09:54:50 2024 +0100
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Thu Mar 28 08:48:14 2024 +0100

    tdf#158803 unncessary semicolons
    
    Change-Id: I64cd7ed8d5f315e25a951cf74f1c425407d99aa1
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165381
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Tested-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/bin/find-headers-to-move-inside-modules.py 
b/bin/find-headers-to-move-inside-modules.py
index 5a3713046481..3ca30544a7c9 100755
--- a/bin/find-headers-to-move-inside-modules.py
+++ b/bin/find-headers-to-move-inside-modules.py
@@ -9,7 +9,7 @@ headerSet = set()
 a = subprocess.Popen("git ls-files include/", stdout=subprocess.PIPE, 
shell=True)
 with a.stdout as txt:
     for line in txt:
-        header = line[8:].strip();
+        header = line[8:].strip()
         if b"README" in header: continue
         if header == b"version.hrc": continue
         # ignore URE headers

Reply via email to