Fix typo in urwidwrapper.py

Change-Id: I402eafcd73bd2676894ae1d27bcc8e617bed42c9
Closes-bug: #1513488
This commit is contained in:
Fedor Zhadaev 2015-11-05 17:43:41 +03:00
parent ed146b5c59
commit 770f2aa62a
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def ChoicesGroup(choices, default_value=None, fn=None):
def CheckBox(label, state=False, callback=None):
"""Returns an Urwid CheckBox object."""
return urwid.Checkbox(label,
return urwid.CheckBox(label,
state=state,
on_state_change=callback)