[tryton-debian-vcs] tryton-modules-party branch debian-wheezy-2.6 updated. debian/2.6.1-1-2-ge59bc66
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 debian-wheezy-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-party.git;a=commitdiff;h=debian/2.6.1-1-2-ge59bc66
commit e59bc6657a692249629be788889edd5eba840c96
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:47:11 2013 +0100
Releasing debian version 2.6.2-1.
diff --git a/debian/changelog b/debian/changelog
index 33fe346..94f2bf1 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-party (2.6.2-1) unstable; urgency=low
+
+ * Merging upstream version 2.6.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 11 Dec 2013 19:29:20 +0100
+
tryton-modules-party (2.6.1-1) experimental; urgency=low
* Removing Daniel from Uploaders. Thanks for your work! (Closes: #704385).
commit c90be58baf6037ad957376d473dfe4553013bd2e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:23:44 2013 +0100
Merging 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