added the missing continue
Dieser Commit ist enthalten in:
Ursprung
172cce0b04
Commit
ac2fbcd29a
|
@ -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:
|
||||||
|
|
Laden…
In neuem Issue referenzieren