rpms/gtg/devel gtg-0.2.1-bug500566.patch,1.1,1.2 gtg.spec,1.8,1.9

Yanko Kaneti yaneti at fedoraproject.org
Thu Feb 18 23:45:07 UTC 2010


Author: yaneti

Update of /cvs/pkgs/rpms/gtg/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv25432

Modified Files:
	gtg-0.2.1-bug500566.patch gtg.spec 
Log Message:
- Fixup the last fixup. Again preventing crash on startup.


gtg-0.2.1-bug500566.patch:
 core/datastore.py      |    6 +++++-
 taskbrowser/browser.py |    3 +++
 2 files changed, 8 insertions(+), 1 deletion(-)

Index: gtg-0.2.1-bug500566.patch
===================================================================
RCS file: /cvs/pkgs/rpms/gtg/devel/gtg-0.2.1-bug500566.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- gtg-0.2.1-bug500566.patch	14 Feb 2010 10:35:38 -0000	1.1
+++ gtg-0.2.1-bug500566.patch	18 Feb 2010 23:45:05 -0000	1.2
@@ -23,7 +23,7 @@
                          "opened_tasks" in self.config["browser"]:
              odic = self.config["browser"]["opened_tasks"]
 +            #odic can contain also "None" or "None,", so we skip them
-+            if odic == "None" or odic[0] == "None":
++            if odic == "None" or (len(odic)> 0 and odic[0] == "None"):
 +                return
              for t in odic:
                  ted = self.open_task(t)


Index: gtg.spec
===================================================================
RCS file: /cvs/pkgs/rpms/gtg/devel/gtg.spec,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -p -r1.8 -r1.9
--- gtg.spec	14 Feb 2010 10:35:39 -0000	1.8
+++ gtg.spec	18 Feb 2010 23:45:06 -0000	1.9
@@ -3,7 +3,7 @@
 
 Name:           gtg
 Version:        0.2.1
-Release:        2%{?dist}
+Release:        3%{?dist}
 Summary:        Personal organizer for the GNOME desktop
 
 Group:          Applications/Productivity
@@ -74,6 +74,9 @@ gtk-update-icon-cache %{_datadir}/icons/
 
 
 %changelog
+* Fri Feb 19 2010 Yanko Kaneti <yaneti at declera.com> 0.2.1-3
+- Fixup the last fixup. Again preventing crash on startup.
+
 * Sun Feb 14 2010 Yanko Kaneti <yaneti at declera.com> 0.2.1-2
 - Pull upstream fix for bug 565224. Prevents crash on startup
 



More information about the scm-commits mailing list