From f2fc1512cb7faa2342a14d510c480965cbee18f4 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 1 Apr 2021 17:36:45 +0100 Subject: [PATCH] Indicate if no session --- desktop_client.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/desktop_client.py b/desktop_client.py index c03da3d31..0ea57cf9e 100644 --- a/desktop_client.py +++ b/desktop_client.py @@ -1435,6 +1435,9 @@ def runDesktopClient(baseDir: str, proxyType: str, httpPrefix: str, else: session = createSession(proxyType) if not desktopShown: + if not session: + print('No session\n') + _desktopClearScreen() _desktopShowBanner() print('No posts\n')