summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2017-01-17 19:56:40 +0000
committerGitHub <noreply@github.com>2017-01-17 19:56:40 +0000
commite2915ca62ca3aee0b8863557fa1b9a0514e5eab6 (patch)
tree63d76913719ee4432ccb5c618250539cd52ad664
parent2db55f22afe1fec8d53711a8d31f3ebaea577e1a (diff)
parent44966d39fee3d10bd4f27155ed5ba3df6014f534 (diff)
Merge pull request #978 from dcbaker/pr/fix-typo-in-ui-name
ui: Fix typo in protected method name
-rw-r--r--alot/settings/manager.py2
-rw-r--r--alot/ui.py4
2 files changed, 3 insertions, 3 deletions
diff --git a/alot/settings/manager.py b/alot/settings/manager.py
index 253171d1..40a36c66 100644
--- a/alot/settings/manager.py
+++ b/alot/settings/manager.py
@@ -190,7 +190,7 @@ class SettingsManager(object):
"""
setter for global config values
- :param key: config option identifise
+ :param key: config option identifies
:type key: str
:param value: option to set
:type value: depends on the specfile :file:`alot.rc.spec`
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