[tryton-debian-vcs] tryton-modules-calendar-scheduling branch debian updated. debian/3.6.0-1-3-g2c657d7

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


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

commit 2c657d784cf238573156cea8c933b97ef6745b2c
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat May 23 20:49:12 2015 +0200

    Releasing debian version 3.6.1-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 33df9b2..3b9dae9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-calendar-scheduling (3.6.1-1) unstable; urgency=medium
+
+  * Updating year of debian copyright.
+  * Merging upstream version 3.6.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sat, 23 May 2015 20:49:12 +0200
+
 tryton-modules-calendar-scheduling (3.6.0-1) unstable; urgency=medium
 
   * Wrapping and sorting control files (wrap-and-sort -bts).
commit 1d087a0f5f663cc3f17798cd19bf220dc86b2a03
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat May 23 20:49:11 2015 +0200

    Merging upstream version 3.6.1.

diff --git a/CHANGELOG b/CHANGELOG
index bc726ee..a050d46 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2015-05-22
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.0 - 2015-04-20
 * Bug fixes (see mercurial logs for details)
 * Add support for PyPy
diff --git a/PKG-INFO b/PKG-INFO
index 2ef1d69..12ee8b8 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_calendar_scheduling
-Version: 3.6.0
+Version: 3.6.1
 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 e656326..301adbe 100644
--- a/calendar_.py
+++ b/calendar_.py
@@ -69,10 +69,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 e7bd575..ff0af1f 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.6.0
+version=3.6.1
 depends:
     calendar
     ir
diff --git a/trytond_calendar_scheduling.egg-info/PKG-INFO b/trytond_calendar_scheduling.egg-info/PKG-INFO
index 34a7ad8..6714be2 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: 3.6.0
+Version: 3.6.1
 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