1
0
Fork 0

added the missing continue

Dieser Commit ist enthalten in:
Sebastian Tobie 2023-04-20 22:10:43 +02:00
Ursprung 172cce0b04
Commit ac2fbcd29a
1 geänderte Dateien mit 1 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -25,6 +25,7 @@ if __name__ == "__main__":
moddoc = module.doc() moddoc = module.doc()
except AttributeError: except AttributeError:
print("Broken module. skipping {}".format(modfile)) print("Broken module. skipping {}".format(modfile))
continue
moddata = modfile.read_text() moddata = modfile.read_text()
match = regex.search(moddata) match = regex.search(moddata)
if not match: if not match: