From 21fc89c651a8adece2571bf2e9b25a3bf0cd4f61 Mon Sep 17 00:00:00 2001 From: LeSasse Date: Wed, 27 Mar 2024 09:54:50 +0100 Subject: tdf#158803 unncessary semicolons Change-Id: I64cd7ed8d5f315e25a951cf74f1c425407d99aa1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165381 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- bin/find-headers-to-move-inside-modules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') 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 -- cgit