[tryton-debian-vcs] tryton-proteus branch upstream-3.4 updated. upstream/3.4.7-1-g7761cae

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.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/3.4.7-1-g7761cae

commit 7761caea281de85ebb6859ca6ceebfdeb4e3563e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Nov 8 09:39:00 2016 +0100

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

diff --git a/CHANGELOG b/CHANGELOG
index 2250bbd..5687f34 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.8 - 2016-11-06
+* Bug fixes (see mercurial logs for details)
+
 Version 3.4.7 - 2016-09-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 8cff45a..6f92621 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.4.7
+Version: 3.4.8
 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 8cff45a..6f92621 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.4.7
+Version: 3.4.8
 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 b022c03..56e92ee 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.4.7"
+__version__ = "3.4.8"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff --git a/proteus/config.py b/proteus/config.py
index 3aeeb35..b3a4455 100644
--- a/proteus/config.py
+++ b/proteus/config.py
@@ -79,7 +79,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]
     dct = XMLRPCDecoder()(dct)
     self._stack[mark:] = [dct]
     self._value = 0
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list