[tryton-debian-vcs] tryton-modules-analytic-account branch debian-wheezy-2.2 updated. debian/2.2.0-2-2-g30d0f0d

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Dec 12 12:57:26 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-analytic-account.git;a=commitdiff;h=debian/2.2.0-2-2-g30d0f0d

commit 30d0f0d201b875bf4509dad22f388874e09b12dd
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Dec 12 13:56:58 2013 +0100

    Releasing debian version 2.2.1-1.

diff --git a/debian/changelog b/debian/changelog
index 8035b7d..560dc76 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-analytic-account (2.2.1-1) unstable; urgency=low
+
+  * Merging upstream version 2.2.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Thu, 12 Dec 2013 13:40:38 +0100
+
 tryton-modules-analytic-account (2.2.0-2) unstable; urgency=low
 
   [ Mathias Behrle ]
commit c54f5d374fbf886037a22e5b96e345cf6f129da0
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Dec 12 13:34:28 2013 +0100

    Merging upstream version 2.2.1.

diff --git a/CHANGELOG b/CHANGELOG
index d856081..4e45cd5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.2.1 - 2013-12-04
+* Bug fixes (see mercurial logs for details)
+
 Version 2.2.0 - 2011-10-24
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 61510fb..e77a6de 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: trytond_analytic_account
-Version: 2.2.0
+Version: 2.2.1
 Summary: Financial and Accounting Module with:
     - Analytic accounting with any number of analytic charts
 
diff --git a/__tryton__.py b/__tryton__.py
index a325ee9..7bfe4c6 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -7,7 +7,7 @@
     'name_es_CO': 'Contabilidad Analítica',
     'name_es_ES': 'Contabilidad analítica',
     'name_fr_FR': 'Comptabilité analytique',
-    'version': '2.2.0',
+    'version': '2.2.1',
     'author': 'B2CK',
     'email': 'info at b2ck.com',
     'website': 'http://www.tryton.org/',
diff --git a/account.py b/account.py
index 8bf2dee..0c9ef19 100644
--- a/account.py
+++ b/account.py
@@ -243,11 +243,11 @@ class Account(ModelSQL, ModelView):
         return res
 
     def search_rec_name(self, name, clause):
-        ids = self.search([('code',) + clause[1:]], limit=1)
+        ids = self.search([('code',) + tuple(clause[1:])], limit=1)
         if ids:
-            return [('code',) + clause[1:]]
+            return [('code',) + tuple(clause[1:])]
         else:
-            return [(self._rec_name,) + clause[1:]]
+            return [(self._rec_name,) + tuple(clause[1:])]
 
     def convert_view(self, tree):
         res = tree.xpath('//field[@name=\'analytic_accounts\']')
diff --git a/trytond_analytic_account.egg-info/PKG-INFO b/trytond_analytic_account.egg-info/PKG-INFO
index 31b8523..8718379 100644
--- a/trytond_analytic_account.egg-info/PKG-INFO
+++ b/trytond_analytic_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
-Metadata-Version: 1.0
+Metadata-Version: 1.1
 Name: trytond-analytic-account
-Version: 2.2.0
+Version: 2.2.1
 Summary: Financial and Accounting Module with:
     - Analytic accounting with any number of analytic charts
 
-- 
tryton-modules-analytic-account



More information about the tryton-debian-vcs mailing list