summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorLeSasse <l.sasse@fz-juelich.de>2024-03-27 09:54:50 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2024-03-28 08:48:14 +0100
commit21fc89c651a8adece2571bf2e9b25a3bf0cd4f61 (patch)
tree1e75fedc695a66b3b0ae6dd439df7c5051d75879 /bin
parent9d4844374395ecce6b2ff4f9a71b3c8dae23050a (diff)
tdf#158803 unncessary semicolons
Change-Id: I64cd7ed8d5f315e25a951cf74f1c425407d99aa1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165381 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/find-headers-to-move-inside-modules.py2
1 files changed, 1 insertions, 1 deletions
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