|
@@ -39,7 +39,7 @@ class PrepareLogfiles:
|
|
|
"!! SMTP-Konfiguration bitte anpassen !!",
|
|
|
"! SMTP-Konfiguration bitte anpassen !",
|
|
|
)
|
|
|
- err_count = [0] * 10
|
|
|
+ err_count = [0] * 15
|
|
|
|
|
|
e, err_count[0] = re.subn(r"(!![^\n]*!!)", r"<b>\1</b>", e)
|
|
|
e, err_count[1] = re.subn(
|
|
@@ -61,11 +61,14 @@ class PrepareLogfiles:
|
|
|
)
|
|
|
|
|
|
e, err_count[3] = re.subn(r"(Der Befehl \".*\" ist entweder falsch geschrieben)", r"<b>\1</b>", e)
|
|
|
+ # e, err_count[9] = re.subn(r"(.* is not recognized as an internal or external command)", r"<b>\1</b>", e)
|
|
|
+ # is not recognized as an internal or external command
|
|
|
|
|
|
e, err_count[4] = re.subn(r"(FEHLER: .*: Source: Impromptu)", r"<b>\1</b>", e)
|
|
|
e, err_count[5] = re.subn(r"(Traceback)", r"<b>\1</b>", e)
|
|
|
e, err_count[6] = re.subn(r"(Fatal error: Uncaught exception)", r"<b>\1</b>", e)
|
|
|
e, err_count[7] = re.subn(r"(Failed to create COM object)", r"<b>\1</b>", e)
|
|
|
+ e, err_count[8] = re.subn(r"(0.0%)", r"<b>\1</b>", e)
|
|
|
e = re.sub(r"<([^a-z/])", r"\1", e)
|
|
|
e = re.sub(r"/\s+>", "/>", e)
|
|
|
e = re.sub(r"([^a-z/])>", r"\1", e)
|