[tryton-debian-vcs] tryton-modules-party branch upstream-2.6 updated. upstream/2.6.1-1-g5199aae

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:48:33 UTC 2013


The following commit has been merged in the upstream-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-party.git;a=commitdiff;h=upstream/2.6.1-1-g5199aae

commit 5199aaee8495c0c8a79ca074268ed434e409801f
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 11 19:23:43 2013 +0100

    Adding upstream version 2.6.2.

diff --git a/CHANGELOG b/CHANGELOG
index d8173ee..bc16bca 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.2 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 2.6.1 - 2013-05-02
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 7c522f7..94fd795 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_party
-Version: 2.6.1
+Version: 2.6.2
 Summary: Tryton module with parties and addresses
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/address.py b/address.py
index 3017b89..7c03f7e 100644
--- a/address.py
+++ b/address.py
@@ -101,13 +101,13 @@ class Address(ModelSQL, ModelView):
     @classmethod
     def search_rec_name(cls, name, clause):
         addresses = cls.search(['OR',
-                ('zip',) + clause[1:],
-                ('city',) + clause[1:],
-                ('name',) + clause[1:],
+                ('zip',) + tuple(clause[1:]),
+                ('city',) + tuple(clause[1:]),
+                ('name',) + tuple(clause[1:]),
                 ], order=[])
         if addresses:
             return [('id', 'in', [address.id for address in addresses])]
-        return [('party',) + clause[1:]]
+        return [('party',) + tuple(clause[1:])]
 
     @classmethod
     def write(cls, addresses, vals):
diff --git a/tryton.cfg b/tryton.cfg
index bc0df45..7570ab3 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.6.1
+version=2.6.2
 depends:
     country
     ir
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index 77ee530..2849cf5 100644
--- a/trytond_party.egg-info/PKG-INFO
+++ b/trytond_party.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-party
-Version: 2.6.1
+Version: 2.6.2
 Summary: Tryton module with parties and addresses
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-party



More information about the tryton-debian-vcs mailing list