Skip to content

Commit

Permalink
improve message
Browse files Browse the repository at this point in the history
  • Loading branch information
LKuemmel committed Oct 15, 2024
1 parent 3101e52 commit 5a70b76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/helpermodules/utils/error_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ def __enter__(self):
def __exit__(self, exception_type, exception, exception_traceback) -> bool:
if isinstance(exception, ModuleNotFoundError):
try:
msg = ("Importfehler: Konnte Modul " +
exception.args[0].split("'")[1] + " nicht finden. Bitte die Internetverbindung prüfen.")
msg = ("Importfehler: Das Python-Modul " + exception.args[0].split("'")[1] + " wurde nicht gefunden." +
" Bitte sicherstellen, dass diese openWB eine Verbindung zum Internet besitzt. Beim nächsten " +
"Neustart wird versucht, fehlende Software-Pakete zu installieren.")
except IndexError:
msg = "Importfehler: " + str(exception)
# pub_system_message() publlished an openWB/set/, dass wird beim Starten gelöscht
Expand Down

0 comments on commit 5a70b76

Please sign in to comment.