[tryton-debian-vcs] tryton-server branch debian-stretch-3.8 updated. debian/3.8.6-1-2-gb34df6b
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Mon Aug 8 09:25:58 UTC 2016
The following commit has been merged in the debian-stretch-3.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-server.git;a=commitdiff;h=debian/3.8.6-1-2-gb34df6b
commit b34df6be730b2a25d21e92c2023f0255ec65653f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:23:34 2016 +0200
Releasing debian version 3.8.7-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index d23d478..bf21b71 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-server (3.8.7-1) unstable; urgency=medium
+
+ * Merging upstream version 3.8.7.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Fri, 05 Aug 2016 11:23:34 +0200
+
tryton-server (3.8.6-1) unstable; urgency=medium
* Setting the branch in the watch file to the fixed version 3.8.
commit 9a197fedd5c656cc30ac43cc7613b151abe48191
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Fri Aug 5 11:23:33 2016 +0200
Merging upstream version 3.8.7.
diff --git a/CHANGELOG b/CHANGELOG
index b0bb9d7..72a0ab6 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.7 - 2016-08-02
+* Bug fixes (see mercurial logs for details)
+
Version 3.8.6 - 2016-07-04
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index f5d0318..6c69ebe 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond
-Version: 3.8.6
+Version: 3.8.7
Summary: Tryton server
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond.egg-info/PKG-INFO b/trytond.egg-info/PKG-INFO
index f5d0318..6c69ebe 100644
--- a/trytond.egg-info/PKG-INFO
+++ b/trytond.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond
-Version: 3.8.6
+Version: 3.8.7
Summary: Tryton server
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond/__init__.py b/trytond/__init__.py
index b6eef79..407e42f 100644
--- a/trytond/__init__.py
+++ b/trytond/__init__.py
@@ -4,7 +4,7 @@ import os
import time
from email import charset
-__version__ = "3.8.6"
+__version__ = "3.8.7"
os.environ['TZ'] = 'UTC'
if hasattr(time, 'tzset'):
diff --git a/trytond/ir/translation.py b/trytond/ir/translation.py
index 4e3f69f..8eb4145 100644
--- a/trytond/ir/translation.py
+++ b/trytond/ir/translation.py
@@ -1619,7 +1619,8 @@ class TranslationExport(Wizard):
def default_result(self, fields):
file_ = self.result.file
+ cast = self.result.__class__.file.cast
self.result.file = False # No need to store it in session
return {
- 'file': file_,
+ 'file': cast(file_) if file_ else None,
}
--
tryton-server
More information about the tryton-debian-vcs
mailing list