summaryrefslogtreecommitdiff
path: root/alot/ui.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-01-17 10:02:30 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-01-17 10:02:30 -0800
commit8f8ff6696c0509a72831a7154e359d8144929711 (patch)
treea5ed08e826222bdf0eb33d528698f106e2063573 /alot/ui.py
parent2db55f22afe1fec8d53711a8d31f3ebaea577e1a (diff)
ui: Fix typo in protected method name
Diffstat (limited to 'alot/ui.py')
-rw-r--r--alot/ui.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/alot/ui.py b/alot/ui.py
index 8b077a7d..9d9e365a 100644
--- a/alot/ui.py
+++ b/alot/ui.py
@@ -98,7 +98,7 @@ class UI(object):
self.mainloop = urwid.MainLoop(self.root_widget,
handle_mouse=settings.get('handle_mouse'),
event_loop=urwid.TwistedEventLoop(),
- unhandled_input=self._unhandeled_input,
+ unhandled_input=self._unhandled_input,
input_filter=self._input_filter)
# set up colours
@@ -245,7 +245,7 @@ class UI(object):
return d
@staticmethod
- def _unhandeled_input(key):
+ def _unhandled_input(key):
"""
Called by :class:`urwid.MainLoop` if a keypress was passed to the root
widget by `self._input_filter` but is not handled in any widget. We