1
0
Fork 0

all exception are now catched

Dieser Commit ist enthalten in:
Sebastian Tobie 2023-04-21 00:17:54 +02:00
Ursprung 52b5a96926
Commit 69bb253369
1 geänderte Dateien mit 4 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -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: