[tryton-debian-vcs] tryton-client branch upstream-3.4 updated. upstream/3.4.3-1-g3dcc3a4
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed May 20 20:21:13 UTC 2015
The following commit has been merged in the upstream-3.4 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-client.git;a=commitdiff;h=upstream/3.4.3-1-g3dcc3a4
commit 3dcc3a4fabc3df8d697aa12fedb74aed6951a5b4
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed May 20 15:00:50 2015 +0200
Adding upstream version 3.4.4.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index ac8adbb..80c0afa 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.4 - 2015-05-19
+* Bug fixes (see mercurial logs for details)
+
Version 3.4.3 - 2015-03-30
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 23f70d1..e8b1e50 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: tryton
-Version: 3.4.3
+Version: 3.4.4
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 23f70d1..e8b1e50 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.4.3
+Version: 3.4.4
Summary: Tryton client
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/tryton/gui/window/view_board/action.py b/tryton/gui/window/view_board/action.py
index 747815d..f9ffddc 100644
--- a/tryton/gui/window/view_board/action.py
+++ b/tryton/gui/window/view_board/action.py
@@ -94,7 +94,7 @@ class Action(SignalEvent):
return
if (self.screen.current_view.view_type == 'tree' and
- self.screen.current_view.treeview.keyword_open):
+ self.screen.current_view.attributes.get('keyword_open')):
GenericAction.exec_keyword('tree_open', {
'model': self.screen.model_name,
'id': self.screen.id_get(),
diff --git a/tryton/gui/window/view_form/view/form_gtk/selection.py b/tryton/gui/window/view_form/view/form_gtk/selection.py
index fe49d9d..96a4f9c 100644
--- a/tryton/gui/window/view_form/view/form_gtk/selection.py
+++ b/tryton/gui/window/view_form/view/form_gtk/selection.py
@@ -77,6 +77,7 @@ class Selection(Widget, SelectionMixin, PopdownMixin):
self.entry.handler_block_by_func(self.changed)
if not self.set_popdown_value(self.entry, value):
- self.get_inactive_selection(value)
+ text = self.get_inactive_selection(value)
+ self.set_popdown(self.selection[:] + [(value, text)], self.entry)
self.set_popdown_value(self.entry, value)
self.entry.handler_unblock_by_func(self.changed)
diff --git a/tryton/jsonrpc.py b/tryton/jsonrpc.py
index 9e259e2..4ca9ab5 100644
--- a/tryton/jsonrpc.py
+++ b/tryton/jsonrpc.py
@@ -170,7 +170,7 @@ class Transport(xmlrpclib.Transport, xmlrpclib.SafeTransport):
def make_connection(self, host):
if self._connection and host == self._connection[0]:
return self._connection[1]
- host, extra_headers, x509 = self.get_host_info(host)
+ host, self._extra_headers, x509 = self.get_host_info(host)
ca_certs = self.__ca_certs
cert_reqs = ssl.CERT_REQUIRED if ca_certs else ssl.CERT_NONE
diff --git a/tryton/version.py b/tryton/version.py
index 51d3886..b5dad88 100644
--- a/tryton/version.py
+++ b/tryton/version.py
@@ -1,6 +1,6 @@
#This file is part of Tryton. The COPYRIGHT file at the top level of
#this repository contains the full copyright notices and license terms.
PACKAGE = "tryton"
-VERSION = "3.4.3"
+VERSION = "3.4.4"
LICENSE = "GPL-3"
WEBSITE = "http://www.tryton.org/"
--
tryton-client
More information about the tryton-debian-vcs
mailing list