[tryton-debian-vcs] tryton-modules-party branch debian-wheezy-2.2 updated. debian/2.2.2-1-2-g76e4a45

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Dec 12 12:57:37 UTC 2013


The following commit has been merged in the debian-wheezy-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-party.git;a=commitdiff;h=debian/2.2.2-1-2-g76e4a45

commit 76e4a45bad2f46ca51809c0cc77b23485c28b50a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Dec 12 13:57:01 2013 +0100

    Releasing debian version 2.2.3-1.

diff --git a/debian/changelog b/debian/changelog
index 5d5e5d9..196736f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-party (2.2.3-1) unstable; urgency=low
+
+  * Merging upstream version 2.2.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Thu, 12 Dec 2013 13:40:59 +0100
+
 tryton-modules-party (2.2.2-1) unstable; urgency=low
 
   * Merging upstream version 2.2.2.
commit dd0a9ada9f4d05397733fb20ef16739a612c5e9e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Dec 12 13:34:57 2013 +0100

    Merging upstream version 2.2.3.

diff --git a/CHANGELOG b/CHANGELOG
index eedca7a..74e70aa 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.3 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 2.2.2 - 2012-11-05
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 0c48eaf..3271f9d 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_party
-Version: 2.2.2
+Version: 2.2.3
 Summary: Define parties, addresses and co.
 Home-page: http://www.tryton.org/
 Author: B2CK
diff --git a/__tryton__.py b/__tryton__.py
index 0302f0a..41a1ffd 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -10,7 +10,7 @@
     'name_fr_FR': 'Tiers',
     'name_nl_NL': 'Relaties',
     'name_ru_RU': 'Контрагенты',
-    'version': '2.2.2',
+    'version': '2.2.3',
     'author' : 'B2CK',
     'email': 'info at b2ck.com',
     'website': 'http://www.tryton.org/',
diff --git a/address.py b/address.py
index 1558f40..b887d62 100644
--- a/address.py
+++ b/address.py
@@ -94,13 +94,13 @@ class Address(ModelSQL, ModelView):
 
     def search_rec_name(self, name, clause):
         ids = self.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 ids:
             return [('id', 'in', ids)]
-        return [('party',) + clause[1:]]
+        return [('party',) + tuple(clause[1:])]
 
     def write(self, ids, vals):
         if 'party' in vals:
diff --git a/trytond_party.egg-info/PKG-INFO b/trytond_party.egg-info/PKG-INFO
index 12d15e2..482d33e 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.2.2
+Version: 2.2.3
 Summary: Define parties, addresses and co.
 Home-page: http://www.tryton.org/
 Author: B2CK
-- 
tryton-modules-party



More information about the tryton-debian-vcs mailing list