[tryton-debian-vcs] tryton-proteus branch upstream updated. upstream/4.0.2-1-ga71a133
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 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=upstream/4.0.2-1-ga71a133
commit a71a133025a442485bc9c58e6aa1f632c7739463
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 8 09:36:41 2016 +0100
Adding upstream version 4.0.3.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
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