From 9ce8295f52ee0c6a95596653454e16392a8efe28 Mon Sep 17 00:00:00 2001 From: Blake DeMarcy Date: Thu, 13 Apr 2017 14:23:42 -0500 Subject: [PATCH] DERP DERP fix anon headers showing even when logged in --- clients/urwid/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clients/urwid/main.py b/clients/urwid/main.py index f8063eb..9eee9cf 100644 --- a/clients/urwid/main.py +++ b/clients/urwid/main.py @@ -232,8 +232,6 @@ class App(object): palette=colormap, handle_mouse=False) - self.index() - def set_header(self, text, *format_specs): """ @@ -1638,6 +1636,7 @@ def main(): try: log_in() app.loop.run() + app.index() except (InterruptedError, KeyboardInterrupt): frilly_exit()