all exception are now catched
Dieser Commit ist enthalten in:
Ursprung
52b5a96926
Commit
69bb253369
|
@ -26,6 +26,9 @@ if __name__ == "__main__":
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
print("Broken module. skipping {}".format(modfile))
|
print("Broken module. skipping {}".format(modfile))
|
||||||
continue
|
continue
|
||||||
|
except Exception as e:
|
||||||
|
print("Error in documentation of module {}: {}".format(modfile, e))
|
||||||
|
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