[tryton-debian-vcs] tryton-proteus branch debian-stretch-3.6 updated. debian/3.6.5-1-2-g1d4accb
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-stretch-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-proteus.git;a=commitdiff;h=debian/3.6.5-1-2-g1d4accb
commit 1d4accb1d29c5e2acd8bf754deae67530c9b1f6b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 8 09:40:08 2016 +0100
Releasing debian version 3.6.6-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index a621db7..17623ae 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-proteus (3.6.6-1) unstable; urgency=medium
+
+ * Merging upstream version 3.6.6.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Tue, 08 Nov 2016 09:40:08 +0100
+
tryton-proteus (3.6.5-1) unstable; urgency=medium
* Merging upstream version 3.6.5.
commit 012f7f151d5c80886a3d5af5ea1dd3392fbb445e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Nov 8 09:40:08 2016 +0100
Merging upstream version 3.6.6.
diff --git a/CHANGELOG b/CHANGELOG
index 24f0c34..14797f9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.6 - 2016-11-06
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.5 - 2016-09-03
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 6e72925..a273081 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: proteus
-Version: 3.6.5
+Version: 3.6.6
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 6e72925..a273081 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.6.5
+Version: 3.6.6
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 f0d9af3..6ada48e 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.6.5"
+__version__ = "3.6.6"
__all__ = ['Model', 'Wizard', 'Report']
import sys
try:
diff --git a/proteus/config.py b/proteus/config.py
index 6a58069..e302970 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