[tryton-debian-vcs] tryton-modules-party branch upstream-2.8 updated. upstream/2.8.0-1-ge2cc92c

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


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

commit e2cc92cb39d936328e8ddd1c7e4e319454705452
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 11 18:30:04 2013 +0100

    Adding upstream version 2.8.1.

diff --git a/CHANGELOG b/CHANGELOG
index e541923..2a5fa61 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 2.8.0 - 2013-04-22
 * Bug fixes (see mercurial logs for details)
 * Add url widget to contact mechanism list view
diff --git a/PKG-INFO b/PKG-INFO
index 347464a..727ae44 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_party
-Version: 2.8.0
+Version: 2.8.1
 Summary: Tryton module with parties and addresses
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/address.py b/address.py
index a1b6c0b..715ddd5 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 1546871..a598ce2 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.0
+version=2.8.1
 depends:
     country
     ir
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index dbe05e2..0fe9124 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.8.0
+Version: 2.8.1
 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