[tryton-debian-vcs] tryton-proteus branch debian updated. debian/4.0.2-1-2-gfb30109

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


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

commit fb301093bb2ae23993780fb00341f296817a5e4a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Nov 8 09:36:42 2016 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 9882c48..b749c48 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (4.0.3-1) unstable; urgency=medium
+
+  * Merging upstream version 4.0.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Tue, 08 Nov 2016 09:36:42 +0100
+
 tryton-proteus (4.0.2-1) unstable; urgency=medium
 
   * Merging upstream version 4.0.2.
commit 9c7d75d79c38de0faa5b3aa5729da429f3400920
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Nov 8 09:36:41 2016 +0100

    Merging upstream version 4.0.3.

diff --git a/CHANGELOG b/CHANGELOG
index c4a0a67..e26b764 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.0.3 - 2016-11-06
+* Bug fixes (see mercurial logs for details)
+
 Version 4.0.2 - 2016-09-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 1a5b3ad..2266a9f 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 4.0.2
+Version: 4.0.3
 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 1a5b3ad..2266a9f 100644
--- a/proteus.egg-info/PKG-INFO
+++ b/proteus.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 4.0.2
+Version: 4.0.3
 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 79ae44d..e710f4b 100644
--- a/proteus/__init__.py
+++ b/proteus/__init__.py
@@ -3,7 +3,7 @@
 '''
 A library to access Tryton's models like a client.
 '''
-__version__ = "4.0.2"
+__version__ = "4.0.3"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff --git a/proteus/config.py b/proteus/config.py
index 967a152..7dc4325 100644
--- a/proteus/config.py
+++ b/proteus/config.py
@@ -91,7 +91,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