(self, text, cursor_position)
| 288 | |
| 289 | class Selector(urwid.SelectableIcon): |
| 290 | def __init__(self, text, cursor_position): |
| 291 | super(Selector, self).__init__(text, cursor_position) |
| 292 | |
| 293 | import logging |
| 294 | logging.basicConfig(filename='out.log', level=logging.DEBUG) |