[tryton-debian-vcs] tryton-proteus branch upstream-3.2 updated. upstream/3.2.8-1-gcc7fbfb

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Tue Nov 8 09:34:03 UTC 2016


The following commit has been merged in the upstream-3.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/3.2.8-1-gcc7fbfb

commit cc7fbfbf2a1908f029c41ebee58009e5125d62d1
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Nov 8 09:37:54 2016 +0100

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

diff --git a/CHANGELOG b/CHANGELOG
index 6ce8e6e..bbfa815 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.2.9 - 2016-11-06
+* Bug fixes (see mercurial logs for details)
+
 Version 3.2.8 - 2016-09-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 76e140c..44fe279 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.8
+Version: 3.2.9
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus.egg-info/PKG-INFO b/proteus.egg-info/PKG-INFO
index 76e140c..44fe279 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.2.8
+Version: 3.2.9
 Summary: Library to access Tryton server as a client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/proteus/__init__.py b/proteus/__init__.py
index e35e1ca..a88a2c6 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "3.2.8"
+__version__ = "3.2.9"
 __all__ = ['Model', 'Wizard']
 import sys
 try:
diff --git a/proteus/config.py b/proteus/config.py
index ebef61d..d0e717b 100644
--- a/proteus/config.py
+++ b/proteus/config.py
@@ -56,7 +56,7 @@ def end_struct(self, data):
     dct = {}
     items = self._stack[mark:]
     for i in range(0, len(items), 2):
-        dct[xmlrpclib._stringify(items[i])] = items[i + 1]
+        dct[items[i]] = items[i + 1]
     if '__class__' in dct:
         if dct['__class__'] == 'date':
             dct = datetime.date(dct['year'], dct['month'], dct['day'])
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list