Mercurial > libervia-backend
changeset 4124:6b581d4c249f
frontends (quick app): reformulate backend not running message + use "Libervia" instead of "SàT"
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 03 Oct 2023 16:22:10 +0200 |
parents | c8b19a32f5c0 |
children | bb74f7dc3b10 |
files | libervia/frontends/quick_frontend/quick_app.py |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libervia/frontends/quick_frontend/quick_app.py Tue Oct 03 16:00:21 2023 +0200 +++ b/libervia/frontends/quick_frontend/quick_app.py Tue Oct 03 16:22:10 2023 +0200 @@ -367,7 +367,9 @@ def _bridge_eb(self, failure): if isinstance(failure, exceptions.BridgeExceptionNoService): - print((_("Can't connect to SàT backend, are you sure it's launched ?"))) + print( + _("Unable to connect to the Libervia backend. Are you sure it's running?") + ) sys.exit(C.EXIT_BACKEND_NOT_FOUND) elif isinstance(failure, exceptions.BridgeInitError): print((_("Can't init bridge")))