From 94cb676ac8a38271b92bc72f251067d073aa69d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Schoentgen?= Date: Thu, 1 Nov 2018 17:29:50 +0100 Subject: Remove semilicons left --- doc/makedoc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'doc') diff --git a/doc/makedoc.py b/doc/makedoc.py index ed3cba7..e5cbdb0 100644 --- a/doc/makedoc.py +++ b/doc/makedoc.py @@ -25,7 +25,7 @@ alink = re.compile(r"", re.IGNORECASE) heading = re.compile(r"(_nn\d)", re.IGNORECASE) def getheadingname(m): - autogeneratedheading = True; + autogeneratedheading = True if m.group(1) != None: amatch = alink.match(m.group(1)) if amatch: @@ -83,7 +83,7 @@ for s in lines: skip = 1 else: skip = 0 - continue; + continue if skip: continue @@ -187,7 +187,7 @@ index += "\n\n" data = "\n".join(result) -data = data.replace("@INDEX@",index) + "\n"; +data = data.replace("@INDEX@",index) + "\n" # Write the file back out with open(filename,"w") as f: -- cgit v1.2.1