[tryton-debian-vcs] tryton-modules-analytic-account branch upstream-2.2 updated. upstream/2.2.0-1-g3b352f4

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 upstream-2.2 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-analytic-account.git;a=commitdiff;h=upstream/2.2.0-1-g3b352f4

commit 3b352f4094b23d988b35e84e5aa6a7584730f761
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Dec 12 13:34:27 2013 +0100

    Adding 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