[tryton-debian-vcs] tryton-proteus branch debian-jessie-3.4 updated. debian/3.4.7-1-2-g004e53c
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-jessie-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=debian/3.4.7-1-2-g004e53c
commit 004e53cf43f3a531924d464cf92e91082831526b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 8 09:39:01 2016 +0100
Releasing debian version 3.4.8-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 6783823..7738281 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (3.4.8-1) unstable; urgency=medium
+
+ * Merging upstream version 3.4.8.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Tue, 08 Nov 2016 09:39:01 +0100
+
tryton-proteus (3.4.7-1) unstable; urgency=medium
* Merging upstream version 3.4.7.
commit 2471a063d2c7329a808794abfbf8b16924ef31ca
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 8 09:39:00 2016 +0100
Merging upstream version 3.4.8.
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