[tryton-debian-vcs] tryton-modules-analytic-account branch upstream-2.8 updated. upstream/2.8.0-1-gf2c62f1

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Dec 11 18:09:00 UTC 2013


The following commit has been merged in the upstream-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-analytic-account.git;a=commitdiff;h=upstream/2.8.0-1-gf2c62f1

commit f2c62f1d1d48f00510da379fd60c3dcf4da2f0ec
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Dec 11 18:29:55 2013 +0100

    Adding upstream version 2.8.1.

diff --git a/CHANGELOG b/CHANGELOG
index 307388e..3f8a9ed 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 950839e..f452e46 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_analytic_account
-Version: 2.8.0
+Version: 2.8.1
 Summary: Tryton module for analytic accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/account.py b/account.py
index a1e0afb..99b2e74 100644
--- a/account.py
+++ b/account.py
@@ -240,11 +240,11 @@ class Account(ModelSQL, ModelView):
 
     @classmethod
     def search_rec_name(cls, name, clause):
-        accounts = cls.search([('code',) + clause[1:]], limit=1)
+        accounts = cls.search([('code',) + tuple(clause[1:])], limit=1)
         if accounts:
-            return [('code',) + clause[1:]]
+            return [('code',) + tuple(clause[1:])]
         else:
-            return [(cls._rec_name,) + clause[1:]]
+            return [(cls._rec_name,) + tuple(clause[1:])]
 
     @classmethod
     def convert_view(cls, tree):
diff --git a/tryton.cfg b/tryton.cfg
index f985701..272993d 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.0
+version=2.8.1
 depends:
     account
     company
diff --git a/trytond_analytic_account.egg-info/PKG-INFO b/trytond_analytic_account.egg-info/PKG-INFO
index f9d7c8b..1f79979 100644
--- a/trytond_analytic_account.egg-info/PKG-INFO
+++ b/trytond_analytic_account.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-analytic-account
-Version: 2.8.0
+Version: 2.8.1
 Summary: Tryton module for analytic accounting
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-analytic-account



More information about the tryton-debian-vcs mailing list