[tryton-debian-vcs] tryton-proteus branch upstream updated. upstream/3.8.0-1-g8c4015f

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Sun Jan 17 20:30:59 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/3.8.0-1-g8c4015f

commit 8c4015fd37902ad6535fe7f0cd1ab9eedabf82cc
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sun Jan 17 19:50:22 2016 +0100

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

diff --git a/CHANGELOG b/CHANGELOG
index b9eb6da..f00fe39 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.1 - 2016-01-11
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.0 - 2015-11-02
 * Bug fixes (see mercurial logs for details)
 * Add StateAction support to Wizard
diff --git a/PKG-INFO b/PKG-INFO
index 3cb28fb..8be1447 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: proteus
-Version: 3.8.0
+Version: 3.8.1
 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 3cb28fb..8be1447 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.8.0
+Version: 3.8.1
 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 427495b..dc1906d 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.8.0"
+__version__ = "3.8.1"
 __all__ = ['Model', 'Wizard', 'Report']
 import sys
 try:
diff --git a/proteus/config.py b/proteus/config.py
index c80dc49..6a58069 100644
--- a/proteus/config.py
+++ b/proteus/config.py
@@ -56,7 +56,8 @@ xmlrpclib.Marshaller.dispatch[Decimal] = dump_decimal
 xmlrpclib.Marshaller.dispatch[datetime.date] = dump_date
 xmlrpclib.Marshaller.dispatch[datetime.time] = dump_time
 xmlrpclib.Marshaller.dispatch[datetime.timedelta] = dump_timedelta
-xmlrpclib.Marshaller.dispatch[bytes] = dump_bytes
+if bytes != str:
+    xmlrpclib.Marshaller.dispatch[bytes] = dump_bytes
 xmlrpclib.Marshaller.dispatch[bytearray] = dump_bytes
 
 
-- 
tryton-proteus



More information about the tryton-debian-vcs mailing list