From 468fa2b14a13f9847a670165759a317f901204e2 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 16 Apr 2009 08:56:30 -0500 Subject: [PATCH] Minor moving of todo and improving readability of push_exception --- src/doneit_glade.py | 10 ---------- src/gtk_toolbox.py | 2 +- src/rtm_view.py | 9 +++++++++ 3 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/doneit_glade.py b/src/doneit_glade.py index 3e3a121..daaa760 100755 --- a/src/doneit_glade.py +++ b/src/doneit_glade.py @@ -1,16 +1,6 @@ #!/usr/bin/python """ -@todo Alt Views (Besides task list) - Map - Using new api widgets people are developing) - Integrate GPS w/ fallback to default location - Use locations for mapping - Quick search (OR within a property type, and between property types) - Drop down for multi selecting priority - Drop down for multi selecting tags - Drop down for multi selecting locations - Calendar selector for choosing due date range @todo Add logging support to make debugging random user issues a lot easier """ diff --git a/src/gtk_toolbox.py b/src/gtk_toolbox.py index 3afede5..fdfcc44 100644 --- a/src/gtk_toolbox.py +++ b/src/gtk_toolbox.py @@ -244,7 +244,7 @@ class ErrorDisplay(object): def push_exception(self, exception = None): if exception is None: - userMessage = sys.exc_info()[1].message + userMessage = sys.exc_value.message warningMessage = traceback.format_exc() else: userMessage = exception.message diff --git a/src/rtm_view.py b/src/rtm_view.py index 6a0ab36..ecfdebf 100644 --- a/src/rtm_view.py +++ b/src/rtm_view.py @@ -1,6 +1,15 @@ """ @todo Add an agenda view to the task list Tree of days, with each successive 7 days dropping the visibility of further lower priority items +@todo Add a map view + Using new api widgets people are developing) + Integrate GPS w/ fallback to default location + Use locations for mapping +@todo Add a quick search (OR within a property type, and between property types) view + Drop down for multi selecting priority + Drop down for multi selecting tags + Drop down for multi selecting locations + Calendar selector for choosing due date range @todo Remove blocking operations from UI thread """ -- 1.7.9.5