[tryton-debian-vcs] tryton-modules-calendar-scheduling branch upstream-2.6 updated. upstream/2.6.1-1-g2ce03a8

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Sun May 24 12:17:50 UTC 2015


The following commit has been merged in the upstream-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-calendar-scheduling.git;a=commitdiff;h=upstream/2.6.1-1-g2ce03a8

commit 2ce03a8a27d3a64964d80897327ef43e24ae8f9c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat May 23 20:50:14 2015 +0200

    Adding upstream version 2.6.2.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index b666667..0047445 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.2 - 2015-05-22
+* Bug fixes (see mercurial logs for details)
+
 Version 2.6.1 - 2015-03-01
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index e3a995b..447c977 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_calendar_scheduling
-Version: 2.6.1
+Version: 2.6.2
 Summary: Tryton module to add scheduling support on CalDAV
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/calendar_.py b/calendar_.py
index 7e0feb8..35a1437 100644
--- a/calendar_.py
+++ b/calendar_.py
@@ -67,10 +67,10 @@ class Event:
         for key in ('status', 'agent'):
             field = 'organizer_schedule_' + key
             param = 'SCHEDULE-' + key.upper()
+            selection = dict(getattr(cls, field).selection)
             if (param in vevent.organizer.params
-                    and vevent.organizer[param] in dict(getattr(cls,
-                            field).selection)):
-                res[field] = vevent.organizer[param]
+                    and vevent.organizer.params[param][0] in selection):
+                res[field] = vevent.organizer.params[param][0]
 
         return res
 
diff --git a/tryton.cfg b/tryton.cfg
index 40ca8d2..890a3f4 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.6.1
+version=2.6.2
 depends:
     calendar
     ir
diff --git a/trytond_calendar_scheduling.egg-info/PKG-INFO b/trytond_calendar_scheduling.egg-info/PKG-INFO
index eee6b19..789467f 100644
--- a/trytond_calendar_scheduling.egg-info/PKG-INFO
+++ b/trytond_calendar_scheduling.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-calendar-scheduling
-Version: 2.6.1
+Version: 2.6.2
 Summary: Tryton module to add scheduling support on CalDAV
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-calendar-scheduling



More information about the tryton-debian-vcs mailing list