[tryton-debian-vcs] tryton-client branch upstream-3.6 updated. upstream/3.6.15-1-gdcd9f95

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Tue Mar 14 12:05:30 UTC 2017


The following commit has been merged in the upstream-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=upstream/3.6.15-1-gdcd9f95

commit dcd9f95f99dc437773056a2c4c09c3d5f79bfbe2
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Mar 14 11:01:51 2017 +0100

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

diff --git a/CHANGELOG b/CHANGELOG
index f9180ed..75ad3de 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.16 - 2017-03-10
+* Bug fixes (see mercurial logs for details)
+
 Version 3.6.15 - 2017-01-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index ccd4bce..deb4ce3 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
 Copyright (C) 2012-2013 Antoine Smolders.
-Copyright (C) 2010-2016 Nicolas Évrard.
+Copyright (C) 2010-2017 Nicolas Évrard.
 Copyright (C) 2007-2017 Cédric Krier.
 Copyright (C) 2007-2013 Bertrand Chenal.
 Copyright (C) 2008-2017 B2CK SPRL.
diff --git a/PKG-INFO b/PKG-INFO
index 346fda6..8ce763e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 3.6.15
+Version: 3.6.16
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton.egg-info/PKG-INFO b/tryton.egg-info/PKG-INFO
index 346fda6..8ce763e 100644
--- a/tryton.egg-info/PKG-INFO
+++ b/tryton.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tryton
-Version: 3.6.15
+Version: 3.6.16
 Summary: Tryton client
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton/__init__.py b/tryton/__init__.py
index ee0493d..e44697c 100644
--- a/tryton/__init__.py
+++ b/tryton/__init__.py
@@ -1,3 +1,3 @@
 # This file is part of Tryton.  The COPYRIGHT file at the top level of
 # this repository contains the full copyright notices and license terms.
-__version__ = "3.6.15"
+__version__ = "3.6.16"
diff --git a/tryton/gui/window/attachment.py b/tryton/gui/window/attachment.py
index 6e563ea..5814e28 100644
--- a/tryton/gui/window/attachment.py
+++ b/tryton/gui/window/attachment.py
@@ -47,6 +47,7 @@ class Attachment(WinForm):
         new_record = self.screen.new()
         file_name = os.path.basename(urlparse.urlparse(uri).path)
         name_field.set_client(new_record, file_name)
+        uri = urllib.unquote(uri)
         uri = uri.decode('utf-8').encode(sys.getfilesystemencoding())
         data_field.set_client(new_record, urllib.urlopen(uri).read())
         self.screen.display()
-- 
tryton-client



More information about the tryton-debian-vcs mailing list