- don't crash on mouse events
 - load the correct project when a task is multihomed
This commit is contained in:
2017-12-25 15:28:02 -08:00
parent 4cb283b890
commit c1759c904a
2 changed files with 10 additions and 5 deletions

View File

@@ -84,7 +84,7 @@ class CmdAsana(object):
def exit_handler(self, key):
if key in ('q', 'Q', 'esc'):
raise urwid.ExitMainLoop()
if key in ('backspace'):
if key == 'backspace':
self.ui.go_back()
def get_asana_service(self):