[tryton-debian-vcs] tryton-modules-country branch debian-jessie-2.8 updated. debian/2.8.0-3-3-g1edc2bc
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:09:28 UTC 2013
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-country.git;a=commitdiff;h=debian/2.8.0-3-3-g1edc2bc
commit 1edc2bc0aee84420a4bfa93e11f26054a012a445
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 19:08:19 2013 +0100
Releasing debian version 2.8.1-1.
diff --git a/debian/changelog b/debian/changelog
index 4f0e289..67302d9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-country (2.8.1-1) unstable; urgency=low
+
+ * Fixing the branch version in the watch file.
+ * Merging upstream version 2.8.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Wed, 11 Dec 2013 18:42:18 +0100
+
tryton-modules-country (2.8.0-3) unstable; urgency=low
* Adapting the rules file to work also with git-buildpackage.
commit d2eb1be217b0cb708b3efa43dac11095f253d37b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Dec 11 18:30:04 2013 +0100
Merging upstream version 2.8.1.
diff --git a/CHANGELOG b/CHANGELOG
index 2dfbb0f..9673140 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)
diff --git a/PKG-INFO b/PKG-INFO
index 97f1f82..aa0fa68 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_country
-Version: 2.8.0
+Version: 2.8.1
Summary: Tryton module with countries
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/country.py b/country.py
index 76d1a5d..f415555 100644
--- a/country.py
+++ b/country.py
@@ -29,9 +29,9 @@ class Country(ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
- if cls.search([('code',) + clause[1:]], limit=1):
- return [('code',) + clause[1:]]
- return [(cls._rec_name,) + clause[1:]]
+ if cls.search([('code',) + tuple(clause[1:])], limit=1):
+ return [('code',) + tuple(clause[1:])]
+ return [(cls._rec_name,) + tuple(clause[1:])]
@classmethod
def create(cls, vlist):
@@ -168,9 +168,9 @@ class Subdivision(ModelSQL, ModelView):
@classmethod
def search_rec_name(cls, name, clause):
- if cls.search([('code',) + clause[1:]], limit=1):
- return [('code',) + clause[1:]]
- return [(cls._rec_name,) + clause[1:]]
+ if cls.search([('code',) + tuple(clause[1:])], limit=1):
+ return [('code',) + tuple(clause[1:])]
+ return [(cls._rec_name,) + tuple(clause[1:])]
@classmethod
def create(cls, vlist):
diff --git a/tryton.cfg b/tryton.cfg
index a3c4f09..8f5291b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.0
+version=2.8.1
depends:
ir
res
diff --git a/trytond_country.egg-info/PKG-INFO b/trytond_country.egg-info/PKG-INFO
index 561d2cc..17e97ab 100644
--- a/trytond_country.egg-info/PKG-INFO
+++ b/trytond_country.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-country
-Version: 2.8.0
+Version: 2.8.1
Summary: Tryton module with countries
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-country
More information about the tryton-debian-vcs
mailing list