all exception are now catched
Dieser Commit ist enthalten in:
Ursprung
52b5a96926
Commit
69bb253369
|
@ -26,6 +26,9 @@ if __name__ == "__main__":
|
|||
except AttributeError:
|
||||
print("Broken module. skipping {}".format(modfile))
|
||||
continue
|
||||
except Exception as e:
|
||||
print("Error in documentation of module {}: {}".format(modfile, e))
|
||||
continue
|
||||
moddata = modfile.read_text()
|
||||
match = regex.search(moddata)
|
||||
if not match:
|
||||
|
|
Laden…
In neuem Issue referenzieren